|
6 | 6 |
|
7 | 7 | <groupId>com.amazonaws</groupId>
|
8 | 8 | <artifactId>amazon-sqs-java-extended-client-lib</artifactId>
|
9 |
| - <version>2.0.2</version> |
| 9 | + <version>2.0.3</version> |
10 | 10 | <packaging>jar</packaging>
|
11 | 11 | <name>Amazon SQS Extended Client Library for Java</name>
|
12 | 12 | <description>An extension to the Amazon SQS client that enables sending and receiving messages up to 2GB via Amazon S3.
|
|
66 | 66 | </dependency>
|
67 | 67 |
|
68 | 68 | <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> |
72 | 72 | <scope>test</scope>
|
73 | 73 | </dependency>
|
74 | 74 | <dependency>
|
75 | 75 | <groupId>org.mockito</groupId>
|
76 | 76 | <artifactId>mockito-core</artifactId>
|
77 |
| - <version>3.12.4</version> |
| 77 | + <version>5.2.0</version> |
78 | 78 | <scope>test</scope>
|
79 | 79 | </dependency>
|
80 | 80 | </dependencies>
|
|
84 | 84 | <plugin>
|
85 | 85 | <groupId>org.apache.maven.plugins</groupId>
|
86 | 86 | <artifactId>maven-compiler-plugin</artifactId>
|
87 |
| - <version>3.2</version> |
| 87 | + <version>3.10.1</version> |
88 | 88 | <configuration>
|
89 | 89 | <source>1.8</source>
|
90 | 90 | <target>1.8</target>
|
|
107 | 107 | </execution>
|
108 | 108 | </executions>
|
109 | 109 | </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> |
110 | 115 | <plugin>
|
111 | 116 | <groupId>org.apache.maven.plugins</groupId>
|
112 | 117 | <artifactId>maven-javadoc-plugin</artifactId>
|
113 |
| - <version>2.9.1</version> |
| 118 | + <version>3.4.1</version> |
114 | 119 | <executions>
|
115 | 120 | <execution>
|
116 | 121 | <id>attach-javadocs</id>
|
117 | 122 | <goals>
|
118 | 123 | <goal>jar</goal>
|
119 | 124 | </goals>
|
120 | 125 | <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> |
126 | 127 | </configuration>
|
127 | 128 | </execution>
|
128 | 129 | </executions>
|
|
0 commit comments