Skip to content

Commit 1e9ab4b

Browse files
authored
Java V2 Update the SDK version numbers (#7183)
1 parent 3977301 commit 1e9ab4b

File tree

103 files changed

+13804
-2549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+13804
-2549
lines changed

javav2/example_code/acm/pom.xml

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<groupId>org.example</groupId>
88
<artifactId>acm</artifactId>
99
<version>1.0-SNAPSHOT</version>
10-
1110
<properties>
1211
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1312
<java.version>17</java.version>
@@ -28,10 +27,7 @@
2827
<plugin>
2928
<groupId>org.apache.maven.plugins</groupId>
3029
<artifactId>maven-surefire-plugin</artifactId>
31-
<version>2.22.1</version>
32-
<configuration>
33-
<groups>IntegrationTest</groups>
34-
</configuration>
30+
<version>3.5.2</version>
3531
</plugin>
3632
</plugins>
3733
</build>
@@ -40,7 +36,7 @@
4036
<dependency>
4137
<groupId>software.amazon.awssdk</groupId>
4238
<artifactId>bom</artifactId>
43-
<version>2.26.15</version>
39+
<version>2.29.45</version>
4440
<type>pom</type>
4541
<scope>import</scope>
4642
</dependency>
@@ -56,25 +52,14 @@
5652
<dependencies>
5753
<dependency>
5854
<groupId>org.junit.jupiter</groupId>
59-
<artifactId>junit-jupiter-api</artifactId>
60-
<version>5.9.2</version>
55+
<artifactId>junit-jupiter</artifactId>
56+
<version>5.11.4</version>
6157
<scope>test</scope>
6258
</dependency>
6359
<dependency>
6460
<groupId>software.amazon.awssdk</groupId>
6561
<artifactId>netty-nio-client</artifactId>
6662
</dependency>
67-
<dependency>
68-
<groupId>org.junit.jupiter</groupId>
69-
<artifactId>junit-jupiter-engine</artifactId>
70-
<version>5.9.2</version>
71-
<scope>test</scope>
72-
</dependency>
73-
<dependency>
74-
<groupId>org.junit.platform</groupId>
75-
<artifactId>junit-platform-commons</artifactId>
76-
<version>1.9.2</version>
77-
</dependency>
7863
<dependency>
7964
<groupId>software.amazon.awssdk</groupId>
8065
<artifactId>secretsmanager</artifactId>
@@ -84,12 +69,6 @@
8469
<artifactId>gson</artifactId>
8570
<version>2.10.1</version>
8671
</dependency>
87-
<dependency>
88-
<groupId>org.junit.platform</groupId>
89-
<artifactId>junit-platform-launcher</artifactId>
90-
<version>1.9.2</version>
91-
<scope>test</scope>
92-
</dependency>
9372
<dependency>
9473
<groupId>com.fasterxml.jackson.core</groupId>
9574
<artifactId>jackson-databind</artifactId>

javav2/example_code/apigateway/pom.xml

Lines changed: 10 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@
1616
<plugins>
1717
<plugin>
1818
<groupId>org.apache.maven.plugins</groupId>
19-
<artifactId>maven-compiler-plugin</artifactId>
20-
<version>3.1</version>
21-
<configuration>
22-
<source>${java.version}</source>
23-
<target>${java.version}</target>
24-
</configuration>
19+
<artifactId>maven-surefire-plugin</artifactId>
20+
<version>3.5.2</version>
2521
</plugin>
2622
</plugins>
2723
</build>
@@ -30,7 +26,7 @@
3026
<dependency>
3127
<groupId>software.amazon.awssdk</groupId>
3228
<artifactId>bom</artifactId>
33-
<version>2.21.20</version>
29+
<version>2.29.45</version>
3430
<type>pom</type>
3531
<scope>import</scope>
3632
</dependency>
@@ -39,14 +35,8 @@
3935
<dependencies>
4036
<dependency>
4137
<groupId>org.junit.jupiter</groupId>
42-
<artifactId>junit-jupiter-api</artifactId>
43-
<version>5.8.2</version>
44-
<scope>test</scope>
45-
</dependency>
46-
<dependency>
47-
<groupId>org.junit.jupiter</groupId>
48-
<artifactId>junit-jupiter-engine</artifactId>
49-
<version>5.8.2</version>
38+
<artifactId>junit-jupiter</artifactId>
39+
<version>5.11.4</version>
5040
<scope>test</scope>
5141
</dependency>
5242
<dependency>
@@ -59,19 +49,16 @@
5949
<version>2.10.1</version>
6050
</dependency>
6151
<dependency>
62-
<groupId>org.junit.platform</groupId>
63-
<artifactId>junit-platform-commons</artifactId>
64-
<version>1.8.2</version>
52+
<groupId>software.amazon.awssdk</groupId>
53+
<artifactId>apigateway</artifactId>
6554
</dependency>
6655
<dependency>
67-
<groupId>org.junit.platform</groupId>
68-
<artifactId>junit-platform-launcher</artifactId>
69-
<version>1.8.2</version>
70-
<scope>test</scope>
56+
<groupId>software.amazon.awssdk</groupId>
57+
<artifactId>sso</artifactId>
7158
</dependency>
7259
<dependency>
7360
<groupId>software.amazon.awssdk</groupId>
74-
<artifactId>apigateway</artifactId>
61+
<artifactId>ssooidc</artifactId>
7562
</dependency>
7663
</dependencies>
7764
</project>

javav2/example_code/appautoscale/pom.xml

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<plugin>
1818
<groupId>org.apache.maven.plugins</groupId>
1919
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.22.1</version>
20+
<version>3.5.2</version>
2121
</plugin>
2222
</plugins>
2323
</build>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>software.amazon.awssdk</groupId>
2828
<artifactId>bom</artifactId>
29-
<version>2.23.13</version>
29+
<version>2.29.45</version>
3030
<type>pom</type>
3131
<scope>import</scope>
3232
</dependency>
@@ -35,21 +35,10 @@
3535
<dependencies>
3636
<dependency>
3737
<groupId>org.junit.jupiter</groupId>
38-
<artifactId>junit-jupiter-api</artifactId>
39-
<version>5.9.2</version>
38+
<artifactId>junit-jupiter</artifactId>
39+
<version>5.11.4</version>
4040
<scope>test</scope>
4141
</dependency>
42-
<dependency>
43-
<groupId>org.junit.jupiter</groupId>
44-
<artifactId>junit-jupiter-engine</artifactId>
45-
<version>5.9.2</version>
46-
<scope>test</scope>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.junit.platform</groupId>
50-
<artifactId>junit-platform-commons</artifactId>
51-
<version>1.9.2</version>
52-
</dependency>
5342
<dependency>
5443
<groupId>software.amazon.awssdk</groupId>
5544
<artifactId>secretsmanager</artifactId>
@@ -63,12 +52,6 @@
6352
<artifactId>gson</artifactId>
6453
<version>2.10.1</version>
6554
</dependency>
66-
<dependency>
67-
<groupId>org.junit.platform</groupId>
68-
<artifactId>junit-platform-launcher</artifactId>
69-
<version>1.9.2</version>
70-
<scope>test</scope>
71-
</dependency>
7255
<dependency>
7356
<groupId>software.amazon.awssdk</groupId>
7457
<artifactId>autoscaling</artifactId>
@@ -77,5 +60,13 @@
7760
<groupId>software.amazon.awssdk</groupId>
7861
<artifactId>auth</artifactId>
7962
</dependency>
63+
<dependency>
64+
<groupId>software.amazon.awssdk</groupId>
65+
<artifactId>sso</artifactId>
66+
</dependency>
67+
<dependency>
68+
<groupId>software.amazon.awssdk</groupId>
69+
<artifactId>ssooidc</artifactId>
70+
</dependency>
8071
</dependencies>
81-
</project>
72+
</project>

javav2/example_code/appsync/pom.xml

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>org.example</groupId>
77
<artifactId>AppSyncJ2</artifactId>
88
<version>1.0-SNAPSHOT</version>
9-
<properties>
9+
<properties>
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1111
<java.version>17</java.version>
1212
<maven.compiler.target>17</maven.compiler.target>
@@ -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>
@@ -38,7 +35,7 @@
3835
<dependency>
3936
<groupId>software.amazon.awssdk</groupId>
4037
<artifactId>bom</artifactId>
41-
<version>2.21.20</version>
38+
<version>2.29.45</version>
4239
<type>pom</type>
4340
<scope>import</scope>
4441
</dependency>
@@ -47,14 +44,8 @@
4744
<dependencies>
4845
<dependency>
4946
<groupId>org.junit.jupiter</groupId>
50-
<artifactId>junit-jupiter-api</artifactId>
51-
<version>5.9.2</version>
52-
<scope>test</scope>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-engine</artifactId>
57-
<version>5.9.2</version>
47+
<artifactId>junit-jupiter</artifactId>
48+
<version>5.11.4</version>
5849
<scope>test</scope>
5950
</dependency>
6051
<dependency>
@@ -67,19 +58,17 @@
6758
<version>2.10.1</version>
6859
</dependency>
6960
<dependency>
70-
<groupId>org.junit.platform</groupId>
71-
<artifactId>junit-platform-commons</artifactId>
72-
<version>1.9.2</version>
61+
<groupId>software.amazon.awssdk</groupId>
62+
<artifactId>appsync</artifactId>
7363
</dependency>
7464
<dependency>
75-
<groupId>org.junit.platform</groupId>
76-
<artifactId>junit-platform-launcher</artifactId>
77-
<version>1.9.2</version>
78-
<scope>test</scope>
65+
<groupId>software.amazon.awssdk</groupId>
66+
<artifactId>sso</artifactId>
7967
</dependency>
8068
<dependency>
8169
<groupId>software.amazon.awssdk</groupId>
82-
<artifactId>appsync</artifactId>
70+
<artifactId>ssooidc</artifactId>
8371
</dependency>
8472
</dependencies>
85-
</project>
73+
</project>
74+

javav2/example_code/athena/pom.xml

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
21
<project xmlns="http://maven.apache.org/POM/4.0.0"
32
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
43
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -17,10 +16,7 @@
1716
<plugin>
1817
<groupId>org.apache.maven.plugins</groupId>
1918
<artifactId>maven-surefire-plugin</artifactId>
20-
<version>2.22.1</version>
21-
<configuration>
22-
<groups>IntegrationTest</groups>
23-
</configuration>
19+
<version>3.5.2</version>
2420
</plugin>
2521
</plugins>
2622
</build>
@@ -29,7 +25,7 @@
2925
<dependency>
3026
<groupId>software.amazon.awssdk</groupId>
3127
<artifactId>bom</artifactId>
32-
<version>2.21.20</version>
28+
<version>2.29.45</version>
3329
<type>pom</type>
3430
<scope>import</scope>
3531
</dependency>
@@ -38,30 +34,21 @@
3834
<dependencies>
3935
<dependency>
4036
<groupId>org.junit.jupiter</groupId>
41-
<artifactId>junit-jupiter-api</artifactId>
42-
<version>5.9.2</version>
37+
<artifactId>junit-jupiter</artifactId>
38+
<version>5.11.4</version>
4339
<scope>test</scope>
4440
</dependency>
4541
<dependency>
46-
<groupId>org.junit.jupiter</groupId>
47-
<artifactId>junit-jupiter-engine</artifactId>
48-
<version>5.9.2</version>
49-
<scope>test</scope>
42+
<groupId>software.amazon.awssdk</groupId>
43+
<artifactId>athena</artifactId>
5044
</dependency>
5145
<dependency>
52-
<groupId>org.junit.platform</groupId>
53-
<artifactId>junit-platform-commons</artifactId>
54-
<version>1.9.2</version>
46+
<groupId>software.amazon.awssdk</groupId>
47+
<artifactId>sso</artifactId>
5548
</dependency>
5649
<dependency>
57-
<groupId>org.junit.platform</groupId>
58-
<artifactId>junit-platform-launcher</artifactId>
59-
<version>1.9.2</version>
60-
<scope>test</scope>
61-
</dependency>
62-
<dependency>
6350
<groupId>software.amazon.awssdk</groupId>
64-
<artifactId>athena</artifactId>
51+
<artifactId>ssooidc</artifactId>
6552
</dependency>
6653
</dependencies>
6754
</project>

0 commit comments

Comments
 (0)