Skip to content

Commit 4d1e4f4

Browse files
committed
updated POM files
1 parent 51e5f42 commit 4d1e4f4

File tree

8 files changed

+28
-135
lines changed

8 files changed

+28
-135
lines changed

javav2/example_code/dynamodb/pom.xml

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@
2626
<plugin>
2727
<groupId>org.apache.maven.plugins</groupId>
2828
<artifactId>maven-surefire-plugin</artifactId>
29-
<version>2.22.1</version>
30-
<configuration>
31-
<groups>IntegrationTest</groups>
32-
</configuration>
29+
<version>3.5.2</version>
3330
</plugin>
3431
</plugins>
3532
</build>
@@ -42,16 +39,15 @@
4239
<type>pom</type>
4340
<scope>import</scope>
4441
</dependency>
45-
<dependency>
46-
<groupId>org.junit</groupId>
47-
<artifactId>junit-bom</artifactId>
48-
<version>5.9.2</version>
49-
<type>pom</type>
50-
<scope>import</scope>
51-
</dependency>
5242
</dependencies>
5343
</dependencyManagement>
5444
<dependencies>
45+
<dependency>
46+
<groupId>org.junit.jupiter</groupId>
47+
<artifactId>junit-jupiter</artifactId>
48+
<version>5.11.4</version>
49+
<scope>test</scope>
50+
</dependency>
5551
<dependency>
5652
<groupId>software.amazon.awssdk</groupId>
5753
<artifactId>dynamodb</artifactId>
@@ -79,16 +75,6 @@
7975
<artifactId>jackson-databind</artifactId>
8076
<version>2.14.2</version>
8177
</dependency>
82-
<dependency>
83-
<groupId>org.junit.jupiter</groupId>
84-
<artifactId>junit-jupiter-api</artifactId>
85-
<scope>test</scope>
86-
</dependency>
87-
<dependency>
88-
<groupId>org.junit.jupiter</groupId>
89-
<artifactId>junit-jupiter-engine</artifactId>
90-
<scope>test</scope>
91-
</dependency>
9278
<dependency>
9379
<groupId>software.amazon.awssdk</groupId>
9480
<artifactId>kms</artifactId>

javav2/example_code/dynamodbasync/pom.xml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<plugin>
2727
<groupId>org.apache.maven.plugins</groupId>
2828
<artifactId>maven-surefire-plugin</artifactId>
29-
<version>2.22.1</version>
29+
<version>3.5.2</version>
3030
</plugin>
3131
</plugins>
3232
</build>
@@ -39,13 +39,6 @@
3939
<type>pom</type>
4040
<scope>import</scope>
4141
</dependency>
42-
<dependency>
43-
<groupId>org.junit</groupId>
44-
<artifactId>junit-bom</artifactId>
45-
<version>5.9.2</version>
46-
<type>pom</type>
47-
<scope>import</scope>
48-
</dependency>
4942
</dependencies>
5043
</dependencyManagement>
5144
<dependencies>
@@ -55,12 +48,8 @@
5548
</dependency>
5649
<dependency>
5750
<groupId>org.junit.jupiter</groupId>
58-
<artifactId>junit-jupiter-api</artifactId>
59-
<scope>test</scope>
60-
</dependency>
61-
<dependency>
62-
<groupId>org.junit.jupiter</groupId>
63-
<artifactId>junit-jupiter-engine</artifactId>
51+
<artifactId>junit-jupiter</artifactId>
52+
<version>5.11.4</version>
6453
<scope>test</scope>
6554
</dependency>
6655
<dependency>

javav2/example_code/ec2/pom.xml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717
<plugin>
1818
<groupId>org.apache.maven.plugins</groupId>
1919
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.22.1</version>
21-
<configuration>
22-
<groups>IntegrationTest</groups>
23-
</configuration>
20+
<version>3.5.2</version>
2421
</plugin>
2522
<plugin>
2623
<groupId>org.apache.maven.plugins</groupId>
@@ -49,24 +46,13 @@
4946
<type>pom</type>
5047
<scope>import</scope>
5148
</dependency>
52-
<dependency>
53-
<groupId>org.junit</groupId>
54-
<artifactId>junit-bom</artifactId>
55-
<version>5.9.2</version>
56-
<type>pom</type>
57-
<scope>import</scope>
58-
</dependency>
5949
</dependencies>
6050
</dependencyManagement>
6151
<dependencies>
6252
<dependency>
6353
<groupId>org.junit.jupiter</groupId>
64-
<artifactId>junit-jupiter-api</artifactId>
65-
<scope>test</scope>
66-
</dependency>
67-
<dependency>
68-
<groupId>org.junit.jupiter</groupId>
69-
<artifactId>junit-jupiter-engine</artifactId>
54+
<artifactId>junit-jupiter</artifactId>
55+
<version>5.11.4</version>
7056
<scope>test</scope>
7157
</dependency>
7258
<dependency>

javav2/example_code/ecr/pom.xml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,7 @@
2828
<plugin>
2929
<groupId>org.apache.maven.plugins</groupId>
3030
<artifactId>maven-surefire-plugin</artifactId>
31-
<version>2.22.1</version>
32-
<configuration>
33-
<groups>IntegrationTest</groups>
34-
</configuration>
31+
<version>3.5.2</version>
3532
</plugin>
3633
</plugins>
3734
</build>
@@ -44,13 +41,6 @@
4441
<type>pom</type>
4542
<scope>import</scope>
4643
</dependency>
47-
<dependency>
48-
<groupId>org.junit</groupId>
49-
<artifactId>junit-bom</artifactId>
50-
<version>5.9.2</version>
51-
<type>pom</type>
52-
<scope>import</scope>
53-
</dependency>
5444
<dependency>
5545
<groupId>org.apache.logging.log4j</groupId>
5646
<artifactId>log4j-bom</artifactId>
@@ -63,12 +53,8 @@
6353
<dependencies>
6454
<dependency>
6555
<groupId>org.junit.jupiter</groupId>
66-
<artifactId>junit-jupiter-api</artifactId>
67-
<scope>test</scope>
68-
</dependency>
69-
<dependency>
70-
<groupId>org.junit.jupiter</groupId>
71-
<artifactId>junit-jupiter-engine</artifactId>
56+
<artifactId>junit-jupiter</artifactId>
57+
<version>5.11.4</version>
7258
<scope>test</scope>
7359
</dependency>
7460
<dependency>

javav2/example_code/ecs/pom.xml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,13 @@
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>
24-
<dependency>
25-
<groupId>org.junit</groupId>
26-
<artifactId>junit-bom</artifactId>
27-
<version>5.9.2</version>
28-
<type>pom</type>
29-
<scope>import</scope>
30-
</dependency>
3124
</dependencies>
3225
</dependencyManagement>
3326
<dependencies>
3427
<dependency>
3528
<groupId>org.junit.jupiter</groupId>
36-
<artifactId>junit-jupiter-api</artifactId>
37-
<scope>test</scope>
38-
</dependency>
39-
<dependency>
40-
<groupId>org.junit.jupiter</groupId>
41-
<artifactId>junit-jupiter-engine</artifactId>
29+
<artifactId>junit-jupiter</artifactId>
30+
<version>5.11.4</version>
4231
<scope>test</scope>
4332
</dependency>
4433
<dependency>

javav2/example_code/elasticbeanstalk/pom.xml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-surefire-plugin</artifactId>
30-
<version>2.22.1</version>
31-
<configuration>
32-
<groups>IntegrationTest</groups>
33-
</configuration>
30+
<version>3.5.2</version>
3431
</plugin>
3532
</plugins>
3633
</build>
@@ -43,24 +40,13 @@
4340
<type>pom</type>
4441
<scope>import</scope>
4542
</dependency>
46-
<dependency>
47-
<groupId>org.junit</groupId>
48-
<artifactId>junit-bom</artifactId>
49-
<version>5.9.2</version>
50-
<type>pom</type>
51-
<scope>import</scope>
52-
</dependency>
53-
</dependencies>
43+
</dependencies>
5444
</dependencyManagement>
5545
<dependencies>
5646
<dependency>
5747
<groupId>org.junit.jupiter</groupId>
58-
<artifactId>junit-jupiter-api</artifactId>
59-
<scope>test</scope>
60-
</dependency>
61-
<dependency>
62-
<groupId>org.junit.jupiter</groupId>
63-
<artifactId>junit-jupiter-engine</artifactId>
48+
<artifactId>junit-jupiter</artifactId>
49+
<version>5.11.4</version>
6450
<scope>test</scope>
6551
</dependency>
6652
<dependency>

javav2/example_code/emr/pom.xml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@
2626
<plugin>
2727
<groupId>org.apache.maven.plugins</groupId>
2828
<artifactId>maven-surefire-plugin</artifactId>
29-
<version>2.22.1</version>
30-
<configuration>
31-
<groups>IntegrationTest</groups>
32-
</configuration>
29+
<version>3.5.2</version>
3330
</plugin>
3431
</plugins>
3532
</build>
@@ -42,24 +39,13 @@
4239
<type>pom</type>
4340
<scope>import</scope>
4441
</dependency>
45-
<dependency>
46-
<groupId>org.junit</groupId>
47-
<artifactId>junit-bom</artifactId>
48-
<version>5.9.2</version>
49-
<type>pom</type>
50-
<scope>import</scope>
51-
</dependency>
5242
</dependencies>
5343
</dependencyManagement>
5444
<dependencies>
5545
<dependency>
5646
<groupId>org.junit.jupiter</groupId>
57-
<artifactId>junit-jupiter-api</artifactId>
58-
<scope>test</scope>
59-
</dependency>
60-
<dependency>
61-
<groupId>org.junit.jupiter</groupId>
62-
<artifactId>junit-jupiter-engine</artifactId>
47+
<artifactId>junit-jupiter</artifactId>
48+
<version>5.11.4</version>
6349
<scope>test</scope>
6450
</dependency>
6551
<dependency>

javav2/example_code/eventbridge/pom.xml

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717
<plugin>
1818
<groupId>org.apache.maven.plugins</groupId>
1919
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.22.1</version>
21-
<configuration>
22-
<groups>IntegrationTest</groups>
23-
</configuration>
20+
<version>3.5.2</version>
2421
</plugin>
2522
</plugins>
2623
</build>
@@ -33,24 +30,13 @@
3330
<type>pom</type>
3431
<scope>import</scope>
3532
</dependency>
36-
<dependency>
37-
<groupId>org.junit</groupId>
38-
<artifactId>junit-bom</artifactId>
39-
<version>5.9.2</version>
40-
<type>pom</type>
41-
<scope>import</scope>
42-
</dependency>
4333
</dependencies>
4434
</dependencyManagement>
4535
<dependencies>
4636
<dependency>
4737
<groupId>org.junit.jupiter</groupId>
48-
<artifactId>junit-jupiter-api</artifactId>
49-
<scope>test</scope>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.junit.jupiter</groupId>
53-
<artifactId>junit-jupiter-engine</artifactId>
38+
<artifactId>junit-jupiter</artifactId>
39+
<version>5.11.4</version>
5440
<scope>test</scope>
5541
</dependency>
5642
<dependency>
@@ -62,7 +48,6 @@
6248
<artifactId>gson</artifactId>
6349
<version>2.10.1</version>
6450
</dependency>
65-
6651
<dependency>
6752
<groupId>software.amazon.awssdk</groupId>
6853
<artifactId>s3</artifactId>

0 commit comments

Comments
 (0)