Skip to content

Commit 940ff5a

Browse files
Adopt the latest test suite and minor refactoring
1 parent e1b1b01 commit 940ff5a

File tree

5 files changed

+145
-132
lines changed

5 files changed

+145
-132
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "maven"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ For more information on using the amazon-sqs-java-extended-client-lib, see our g
2525
<dependency>
2626
<groupId>com.amazonaws</groupId>
2727
<artifactId>amazon-sqs-java-extended-client-lib</artifactId>
28-
<version>2.0.2</version>
28+
<version>2.0.3</version>
2929
<type>jar</type>
3030
</dependency>
3131
```

pom.xml

+13-12
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.amazonaws</groupId>
88
<artifactId>amazon-sqs-java-extended-client-lib</artifactId>
9-
<version>2.0.2</version>
9+
<version>2.0.3</version>
1010
<packaging>jar</packaging>
1111
<name>Amazon SQS Extended Client Library for Java</name>
1212
<description>An extension to the Amazon SQS client that enables sending and receiving messages up to 2GB via Amazon S3.
@@ -66,15 +66,15 @@
6666
</dependency>
6767

6868
<dependency>
69-
<groupId>junit</groupId>
70-
<artifactId>junit</artifactId>
71-
<version>4.13.1</version>
69+
<groupId>org.junit.jupiter</groupId>
70+
<artifactId>junit-jupiter</artifactId>
71+
<version>5.9.2</version>
7272
<scope>test</scope>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.mockito</groupId>
7676
<artifactId>mockito-core</artifactId>
77-
<version>3.12.4</version>
77+
<version>5.2.0</version>
7878
<scope>test</scope>
7979
</dependency>
8080
</dependencies>
@@ -84,7 +84,7 @@
8484
<plugin>
8585
<groupId>org.apache.maven.plugins</groupId>
8686
<artifactId>maven-compiler-plugin</artifactId>
87-
<version>3.2</version>
87+
<version>3.10.1</version>
8888
<configuration>
8989
<source>1.8</source>
9090
<target>1.8</target>
@@ -107,22 +107,23 @@
107107
</execution>
108108
</executions>
109109
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-surefire-plugin</artifactId>
113+
<version>3.0.0-M7</version>
114+
</plugin>
110115
<plugin>
111116
<groupId>org.apache.maven.plugins</groupId>
112117
<artifactId>maven-javadoc-plugin</artifactId>
113-
<version>2.9.1</version>
118+
<version>3.4.1</version>
114119
<executions>
115120
<execution>
116121
<id>attach-javadocs</id>
117122
<goals>
118123
<goal>jar</goal>
119124
</goals>
120125
<configuration>
121-
<!--
122-
TODO-RS: Java 8 is more strict about some javadoc tags.
123-
We'll need to update quite a few to remove this workaround.
124-
-->
125-
<additionalparam>-Xdoclint:none</additionalparam>
126+
<doclint>none</doclint>
126127
</configuration>
127128
</execution>
128129
</executions>

0 commit comments

Comments
 (0)