|
201 | 201 | </profile> |
202 | 202 | <profile> |
203 | 203 | <id>awssdkv1</id> |
| 204 | + <build> |
| 205 | + <plugins> |
| 206 | + <plugin> |
| 207 | + <groupId>org.apache.maven.plugins</groupId> |
| 208 | + <artifactId>maven-compiler-plugin</artifactId> |
| 209 | + <configuration> |
| 210 | + <excludes> |
| 211 | + <exclude>**/awssdkv2/**/*.java</exclude> |
| 212 | + <exclude>**/deprecated/**/*.java</exclude> |
| 213 | + </excludes> |
| 214 | + <testExcludes> |
| 215 | + <exclude>**/awssdkv2/**/*.java</exclude> |
| 216 | + <exclude>**/deprecated/**/*.java</exclude> |
| 217 | + </testExcludes> |
| 218 | + </configuration> |
| 219 | + </plugin> |
| 220 | + </plugins> |
| 221 | + </build> |
204 | 222 | <dependencies> |
205 | 223 | <dependency> |
206 | 224 | <groupId>com.amazonaws</groupId> |
|
248 | 266 | </profile> |
249 | 267 | <profile> |
250 | 268 | <id>awssdkv2</id> |
| 269 | + <build> |
| 270 | + <plugins> |
| 271 | + <plugin> |
| 272 | + <groupId>org.apache.maven.plugins</groupId> |
| 273 | + <artifactId>maven-compiler-plugin</artifactId> |
| 274 | + <configuration> |
| 275 | + <excludes> |
| 276 | + <exclude>**/awssdkv1/**/*.java</exclude> |
| 277 | + <exclude>**/deprecated/**/*.java</exclude> |
| 278 | + </excludes> |
| 279 | + <testExcludes> |
| 280 | + <exclude>**/awssdkv1/**/*.java</exclude> |
| 281 | + <exclude>**/deprecated/**/*.java</exclude> |
| 282 | + </testExcludes> |
| 283 | + </configuration> |
| 284 | + </plugin> |
| 285 | + </plugins> |
| 286 | + </build> |
251 | 287 | <dependencies> |
252 | 288 | <dependency> |
253 | 289 | <groupId>software.amazon.awssdk</groupId> |
|
276 | 312 | <version>${aws.sdkv2.version}</version> |
277 | 313 | <scope>provided</scope> |
278 | 314 | </dependency> |
279 | | - <dependency> |
280 | | - <groupId>software.amazon.awssdk</groupId> |
281 | | - <artifactId>sns</artifactId> |
282 | | - <version>${aws.sdkv2.version}</version> |
283 | | - <scope>provided</scope> |
284 | | - </dependency> |
285 | | - <dependency> |
286 | | - <groupId>software.amazon.awssdk</groupId> |
287 | | - <artifactId>sqs</artifactId> |
288 | | - <version>${aws.sdkv2.version}</version> |
289 | | - <scope>provided</scope> |
290 | | - </dependency> |
291 | 315 | <dependency> |
292 | 316 | <groupId>software.amazon.awssdk</groupId> |
293 | 317 | <artifactId>ssm</artifactId> |
|
300 | 324 | <version>${aws.sdkv2.version}</version> |
301 | 325 | <scope>provided</scope> |
302 | 326 | </dependency> |
303 | | - <dependency> |
304 | | - <groupId>software.amazon.awssdk</groupId> |
305 | | - <artifactId>kinesis</artifactId> |
306 | | - <version>${aws.sdkv2.version}</version> |
307 | | - <scope>provided</scope> |
308 | | - </dependency> |
309 | 327 | <dependency> |
310 | 328 | <groupId>software.amazon.awssdk</groupId> |
311 | 329 | <artifactId>s3</artifactId> |
|
477 | 495 | <plugin> |
478 | 496 | <groupId>org.apache.maven.plugins</groupId> |
479 | 497 | <artifactId>maven-surefire-plugin</artifactId> |
480 | | - <version>2.21.0</version> |
| 498 | + <version>2.22.1</version> |
481 | 499 | <dependencies> |
482 | 500 | <dependency> |
483 | 501 | <groupId>org.apache.maven.surefire</groupId> |
484 | 502 | <artifactId>surefire-junit4</artifactId> |
485 | | - <version>2.21.0</version> |
| 503 | + <version>2.22.1</version> |
486 | 504 | </dependency> |
487 | 505 | <dependency> |
488 | 506 | <groupId>org.junit.platform</groupId> |
|
0 commit comments