Skip to content

Commit 8627d03

Browse files
Merge pull request #112 from ziyanli-amazon/sdkv2
SDK V2 Upgrade
2 parents 13a3a50 + 0163389 commit 8627d03

36 files changed

+1155
-1272
lines changed

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Amazon SQS Java Messaging Library
2-
Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
Copyright 2010-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
33

44
This product includes software developed by
55
Amazon Technologies, Inc (http://www.amazon.com/).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for communicating with Amazon Simple Queue Service. This project builds on top o
1515
<dependency>
1616
<groupId>com.amazonaws</groupId>
1717
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
18-
<version>1.1.0</version>
18+
<version>2.0.0</version>
1919
<type>jar</type>
2020
</dependency>
2121
```

pom.xml

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.amazonaws</groupId>
44
<artifactId>amazon-sqs-java-messaging-lib</artifactId>
5-
<version>1.1.0</version>
5+
<version>2.0.0</version>
66
<name>Amazon SQS Java Messaging Library</name>
77
<description>The Amazon SQS Java Messaging Library holds the Java Message Service compatible classes, that are used
88
for communicating with Amazon Simple Queue Service.
@@ -29,16 +29,39 @@
2929
</developer>
3030
</developers>
3131
<properties>
32-
<aws-java-sdk.version>1.11.106</aws-java-sdk.version>
32+
<aws-java-sdk.version>2.17.208</aws-java-sdk.version>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
</properties>
3535

3636
<dependencies>
3737
<dependency>
38-
<groupId>com.amazonaws</groupId>
39-
<artifactId>aws-java-sdk-sqs</artifactId>
38+
<groupId>software.amazon.awssdk</groupId>
39+
<artifactId>sqs</artifactId>
4040
<version>${aws-java-sdk.version}</version>
4141
</dependency>
42+
<dependency>
43+
<groupId>software.amazon.awssdk</groupId>
44+
<artifactId>auth</artifactId>
45+
<version>${aws-java-sdk.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>software.amazon.awssdk</groupId>
49+
<artifactId>utils</artifactId>
50+
<version>${aws-java-sdk.version}</version>
51+
</dependency>
52+
53+
<dependency>
54+
<groupId>org.slf4j</groupId>
55+
<artifactId>slf4j-api</artifactId>
56+
<version>1.7.30</version>
57+
</dependency>
58+
59+
<dependency>
60+
<groupId>joda-time</groupId>
61+
<artifactId>joda-time</artifactId>
62+
<version>2.10.13</version>
63+
</dependency>
64+
4265
<dependency>
4366
<groupId>org.apache.geronimo.specs</groupId>
4467
<artifactId>geronimo-jms_1.1_spec</artifactId>
@@ -72,8 +95,8 @@
7295
<artifactId>maven-compiler-plugin</artifactId>
7396
<version>3.2</version>
7497
<configuration>
75-
<source>1.7</source>
76-
<target>1.7</target>
98+
<source>1.8</source>
99+
<target>1.8</target>
77100
<encoding>UTF-8</encoding>
78101
</configuration>
79102
</plugin>

0 commit comments

Comments
 (0)