|
90 | 90 | <artifactId>netty-nio-client</artifactId>
|
91 | 91 | <version>${awssdk.version}</version>
|
92 | 92 | </dependency>
|
| 93 | + <dependency> |
| 94 | + <groupId>software.amazon.awssdk</groupId> |
| 95 | + <artifactId>sdk-core</artifactId> |
| 96 | + <version>${awssdk.version}</version> |
| 97 | + </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>software.amazon.awssdk</groupId> |
| 100 | + <artifactId>aws-core</artifactId> |
| 101 | + <version>${awssdk.version}</version> |
| 102 | + </dependency> |
| 103 | + <dependency> |
| 104 | + <groupId>software.amazon.awssdk</groupId> |
| 105 | + <artifactId>arns</artifactId> |
| 106 | + <version>${awssdk.version}</version> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>software.amazon.awssdk</groupId> |
| 110 | + <artifactId>regions</artifactId> |
| 111 | + <version>${awssdk.version}</version> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>software.amazon.awssdk</groupId> |
| 115 | + <artifactId>utils</artifactId> |
| 116 | + <version>${awssdk.version}</version> |
| 117 | + </dependency> |
| 118 | + <dependency> |
| 119 | + <groupId>software.amazon.awssdk</groupId> |
| 120 | + <artifactId>http-client-spi</artifactId> |
| 121 | + <version>${awssdk.version}</version> |
| 122 | + </dependency> |
| 123 | + <dependency> |
| 124 | + <groupId>software.amazon.awssdk</groupId> |
| 125 | + <artifactId>dynamodb-enhanced</artifactId> |
| 126 | + <version>${awssdk.version}</version> |
| 127 | + </dependency> |
| 128 | + |
93 | 129 | <dependency>
|
94 | 130 | <groupId>software.amazon.glue</groupId>
|
95 | 131 | <artifactId>schema-registry-serde</artifactId>
|
|
127 | 163 | <artifactId>commons-collections</artifactId>
|
128 | 164 | <version>3.2.2</version>
|
129 | 165 | </dependency>
|
| 166 | + <dependency> |
| 167 | + <groupId>org.apache.commons</groupId> |
| 168 | + <artifactId>commons-collections4</artifactId> |
| 169 | + <version>4.4</version> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>io.netty</groupId> |
| 173 | + <artifactId>netty-handler</artifactId> |
| 174 | + <version>4.1.108.Final</version> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>com.google.code.findbugs</groupId> |
| 178 | + <artifactId>jsr305</artifactId> |
| 179 | + <version>3.0.2</version> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 183 | + <artifactId>jackson-databind</artifactId> |
| 184 | + <version>2.10.1</version> |
| 185 | + </dependency> |
| 186 | + <dependency> |
| 187 | + <groupId>org.reactivestreams</groupId> |
| 188 | + <artifactId>reactive-streams</artifactId> |
| 189 | + <version>1.0.4</version> |
| 190 | + </dependency> |
| 191 | + <dependency> |
| 192 | + <groupId>software.amazon.awssdk</groupId> |
| 193 | + <artifactId>annotations</artifactId> |
| 194 | + <version>2.25.64</version> |
| 195 | + </dependency> |
130 | 196 | <dependency>
|
131 | 197 | <groupId>org.slf4j</groupId>
|
132 | 198 | <artifactId>slf4j-api</artifactId>
|
|
153 | 219 | </dependency>
|
154 | 220 |
|
155 | 221 | <!-- Test -->
|
| 222 | + <dependency> |
| 223 | + <groupId>software.amazon.awssdk</groupId> |
| 224 | + <artifactId>sts</artifactId> |
| 225 | + <version>${awssdk.version}</version> |
| 226 | + <scope>test</scope> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>software.amazon.awssdk</groupId> |
| 230 | + <artifactId>auth</artifactId> |
| 231 | + <version>${awssdk.version}</version> |
| 232 | + <scope>test</scope> |
| 233 | + </dependency> |
156 | 234 | <!-- TODO: Migrate all tests to Junit5 -->
|
157 | 235 | <dependency>
|
158 | 236 | <groupId>org.junit.jupiter</groupId>
|
|
180 | 258 | <version>3.12.4</version>
|
181 | 259 | <scope>test</scope>
|
182 | 260 | </dependency>
|
| 261 | + <dependency> |
| 262 | + <groupId>org.mockito</groupId> |
| 263 | + <artifactId>mockito-core</artifactId> |
| 264 | + <version>3.12.4</version> |
| 265 | + <scope>test</scope> |
| 266 | + </dependency> |
183 | 267 | <dependency>
|
184 | 268 | <groupId>org.hamcrest</groupId>
|
185 | 269 | <artifactId>hamcrest-all</artifactId>
|
186 | 270 | <version>1.3</version>
|
187 | 271 | <scope>test</scope>
|
188 | 272 | </dependency>
|
| 273 | + <dependency> |
| 274 | + <groupId>org.hamcrest</groupId> |
| 275 | + <artifactId>hamcrest-core</artifactId> |
| 276 | + <version>1.3</version> |
| 277 | + <scope>test</scope> |
| 278 | + </dependency> |
189 | 279 | <!-- Using older version to be compatible with Java 8 -->
|
190 | 280 | <!-- https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal -->
|
191 | 281 | <dependency>
|
|
464 | 554 | </execution>
|
465 | 555 | </executions>
|
466 | 556 | </plugin>
|
| 557 | + <plugin> |
| 558 | + <groupId>org.apache.maven.plugins</groupId> |
| 559 | + <artifactId>maven-dependency-plugin</artifactId> |
| 560 | + <version>3.1.2</version> |
| 561 | + <executions> |
| 562 | + <execution> |
| 563 | + <id>analyze-dependencies</id> |
| 564 | + <phase>verify</phase> |
| 565 | + <goals> |
| 566 | + <goal>analyze-only</goal> |
| 567 | + </goals> |
| 568 | + <configuration> |
| 569 | + <failOnWarning>true</failOnWarning> |
| 570 | + <!-- Ignore Runtime/Provided/Test/System scopes for unused dependency analysis. --> |
| 571 | + <ignoreNonCompile>true</ignoreNonCompile> |
| 572 | + </configuration> |
| 573 | + </execution> |
| 574 | + </executions> |
| 575 | + </plugin> |
467 | 576 | </plugins>
|
468 | 577 |
|
469 | 578 | </build>
|
|
0 commit comments