Skip to content

Commit 1cc80b8

Browse files
committed
updated the SDK build number
1 parent 42027b7 commit 1cc80b8

File tree

17 files changed

+116
-63
lines changed

17 files changed

+116
-63
lines changed

javav2/example_code/acm/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>software.amazon.awssdk</groupId>
4242
<artifactId>bom</artifactId>
43-
<version>2.26.15</version>
43+
<version>2.29.45</version>
4444
<type>pom</type>
4545
<scope>import</scope>
4646
</dependency>
@@ -133,5 +133,13 @@
133133
<artifactId>url-connection-client</artifactId>
134134
<version>2.18.13</version>
135135
</dependency>
136+
<dependency>
137+
<groupId>software.amazon.awssdk</groupId>
138+
<artifactId>sso</artifactId>
139+
</dependency>
140+
<dependency>
141+
<groupId>software.amazon.awssdk</groupId>
142+
<artifactId>ssooidc</artifactId>
143+
</dependency>
136144
</dependencies>
137145
</project>

javav2/example_code/apigateway/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>software.amazon.awssdk</groupId>
3232
<artifactId>bom</artifactId>
33-
<version>2.21.20</version>
33+
<version>2.29.45</version>
3434
<type>pom</type>
3535
<scope>import</scope>
3636
</dependency>
@@ -73,5 +73,13 @@
7373
<groupId>software.amazon.awssdk</groupId>
7474
<artifactId>apigateway</artifactId>
7575
</dependency>
76+
<dependency>
77+
<groupId>software.amazon.awssdk</groupId>
78+
<artifactId>sso</artifactId>
79+
</dependency>
80+
<dependency>
81+
<groupId>software.amazon.awssdk</groupId>
82+
<artifactId>ssooidc</artifactId>
83+
</dependency>
7684
</dependencies>
7785
</project>

javav2/example_code/appautoscale/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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>
@@ -77,5 +77,13 @@
7777
<groupId>software.amazon.awssdk</groupId>
7878
<artifactId>auth</artifactId>
7979
</dependency>
80+
<dependency>
81+
<groupId>software.amazon.awssdk</groupId>
82+
<artifactId>sso</artifactId>
83+
</dependency>
84+
<dependency>
85+
<groupId>software.amazon.awssdk</groupId>
86+
<artifactId>ssooidc</artifactId>
87+
</dependency>
8088
</dependencies>
8189
</project>

javav2/example_code/appsync/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>software.amazon.awssdk</groupId>
4040
<artifactId>bom</artifactId>
41-
<version>2.21.20</version>
41+
<version>2.29.45</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>
@@ -81,5 +81,13 @@
8181
<groupId>software.amazon.awssdk</groupId>
8282
<artifactId>appsync</artifactId>
8383
</dependency>
84+
<dependency>
85+
<groupId>software.amazon.awssdk</groupId>
86+
<artifactId>sso</artifactId>
87+
</dependency>
88+
<dependency>
89+
<groupId>software.amazon.awssdk</groupId>
90+
<artifactId>ssooidc</artifactId>
91+
</dependency>
8492
</dependencies>
8593
</project>

javav2/example_code/cloudfront/src/test/java/CloudFrontTest.java

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,9 @@ public static void setUp() throws IOException {
6767
}
6868
}
6969

70-
@Test
71-
@Order(1)
72-
public void whenInitializingAWSService_thenNotNull() {
73-
assertNotNull(cloudFrontClient);
74-
System.out.println("Test 1 passed");
75-
}
7670

7771
@Test
78-
@Order(2)
72+
@Order(1)
7973
public void CreateFunction() {
8074
functionName = "FunctionUploadedByJava" + UUID.randomUUID();
8175
funcARN = CreateFunction.createNewFunction(cloudFrontClient, functionName, functionFileName);
@@ -84,40 +78,30 @@ public void CreateFunction() {
8478
}
8579

8680
@Test
87-
@Order(3)
81+
@Order(2)
8882
public void DescribeFunction() {
8983
eTagVal = DescribeFunction.describeFunction(cloudFrontClient, functionName);
9084
assertTrue(!eTagVal.isEmpty());
9185
System.out.println("Test 3 passed");
9286
}
9387

9488
@Test
95-
@Order(4)
89+
@Order(3)
9690
public void ListFunctions(){
9791
ListFunctions.listAllFunctions(cloudFrontClient);
9892
System.out.println("Test 4 passed");
9993
}
10094

10195
@Test
102-
@Order(5)
96+
@Order(4)
10397
public void GetDistribution() {
10498
GetDistributions.getCFDistributions(cloudFrontClient);
10599
System.out.println("Test 5 passed");
106100
}
107101

108-
109102
@Test
110-
@Order(6)
111-
public void ModifyDistribution() {
112-
113-
ModifyDistribution.modDistribution(cloudFrontClient, distributionId);
114-
System.out.println("Test 6 passed");
115-
}
116-
117-
@Test
118-
@Order(7)
103+
@Order(5)
119104
public void DeleteFunction(){
120-
121105
DeleteFunction.deleteSpecificFunction(cloudFrontClient, functionName, eTagVal);
122106
System.out.println("Test 7 passed");
123107
}

javav2/example_code/cloudwatch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>software.amazon.awssdk</groupId>
3131
<artifactId>bom</artifactId>
32-
<version>2.26.15</version>
32+
<version>2.29.45</version>
3333
<type>pom</type>
3434
<scope>import</scope>
3535
</dependency>

javav2/example_code/codedeploy/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>software.amazon.awssdk</groupId>
4040
<artifactId>bom</artifactId>
41-
<version>2.21.20</version>
41+
<version>2.29.45</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>

javav2/example_code/ec2/ec2Key.pem

Lines changed: 0 additions & 27 deletions
This file was deleted.

javav2/example_code/sts/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>software.amazon.awssdk</groupId>
4040
<artifactId>bom</artifactId>
41-
<version>2.21.20</version>
41+
<version>2.29.45</version>
4242
<type>pom</type>
4343
<scope>import</scope>
4444
</dependency>
@@ -81,5 +81,13 @@
8181
<version>1.9.0</version>
8282
<scope>test</scope>
8383
</dependency>
84+
<dependency>
85+
<groupId>software.amazon.awssdk</groupId>
86+
<artifactId>sso</artifactId>
87+
</dependency>
88+
<dependency>
89+
<groupId>software.amazon.awssdk</groupId>
90+
<artifactId>ssooidc</artifactId>
91+
</dependency>
8492
</dependencies>
8593
</project>

javav2/example_code/support/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>software.amazon.awssdk</groupId>
3838
<artifactId>bom</artifactId>
39-
<version>2.21.20</version>
39+
<version>2.29.45</version>
4040
<type>pom</type>
4141
<scope>import</scope>
4242
</dependency>
@@ -81,5 +81,13 @@
8181
<artifactId>log4j-api</artifactId>
8282
<version>2.20.0</version>
8383
</dependency>
84+
<dependency>
85+
<groupId>software.amazon.awssdk</groupId>
86+
<artifactId>sso</artifactId>
87+
</dependency>
88+
<dependency>
89+
<groupId>software.amazon.awssdk</groupId>
90+
<artifactId>ssooidc</artifactId>
91+
</dependency>
8492
</dependencies>
8593
</project>

0 commit comments

Comments
 (0)