Skip to content

Commit 73c5a08

Browse files
committed
updated to aws sdk java v2.1.0
1 parent 0089a1d commit 73c5a08

11 files changed

+632
-854
lines changed

pom.xml

Lines changed: 46 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24
<modelVersion>4.0.0</modelVersion>
3-
<groupId>jax-rs-aws-signerv4</groupId>
4-
<artifactId>jax-rs-aws-signerv4</artifactId>
5+
<groupId>aws-java-sdk-v2-utils</groupId>
6+
<artifactId>aws-java-sdk-v2-utils</artifactId>
57
<version>1.0-SNAPSHOT</version>
68

79

810
<properties>
911
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1012
<maven.compiler.source>1.8</maven.compiler.source>
1113
<maven.compiler.target>1.8</maven.compiler.target>
14+
<aws.version>2.1.0</aws.version>
1215
</properties>
1316

1417
<dependencies>
@@ -20,85 +23,86 @@
2023
<scope>provided</scope>
2124
</dependency>
2225

23-
<!-- JAX-RS Request Filter Dependencies -->
24-
<dependency>
25-
<groupId>javax.ws.rs</groupId>
26-
<artifactId>javax.ws.rs-api</artifactId>
27-
<version>2.1</version>
28-
<scope>provided</scope>
29-
</dependency>
26+
3027

3128
<!-- AWS HTTP Client Dependencies -->
3229
<dependency>
3330
<groupId>software.amazon.awssdk</groupId>
3431
<artifactId>core</artifactId>
35-
<version>2.0.0-preview-7</version>
32+
<version>${aws.version}</version>
33+
<type>pom</type>
3634
<scope>provided</scope>
3735
</dependency>
38-
36+
3937
<!-- S3Util Dependencies -->
4038
<dependency>
4139
<groupId>software.amazon.awssdk</groupId>
4240
<artifactId>s3</artifactId>
43-
<version>2.0.0-preview-7</version>
41+
<version>${aws.version}</version>
42+
<scope>provided</scope>
43+
</dependency>
44+
45+
<!-- DynamoDB utility -->
46+
<dependency>
47+
<groupId>software.amazon.awssdk</groupId>
48+
<artifactId>dynamodb</artifactId>
49+
<version>${aws.version}</version>
50+
<scope>provided</scope>
51+
</dependency>
52+
53+
<!-- KMS Encryption utility -->
54+
<dependency>
55+
<groupId>software.amazon.awssdk</groupId>
56+
<artifactId>kms</artifactId>
57+
<version>${aws.version}</version>
4458
<scope>provided</scope>
4559
</dependency>
4660

47-
<!-- S3Util Dependencies -->
48-
<dependency>
49-
<groupId>software.amazon.awssdk</groupId>
50-
<artifactId>s3</artifactId>
51-
<version>2.0.0-preview-7</version>
52-
<scope>provided</scope>
53-
</dependency>
54-
55-
<!-- DynamoDB utility -->
56-
<dependency>
57-
<groupId>software.amazon.awssdk</groupId>
58-
<artifactId>dynamodb</artifactId>
59-
<version>2.0.0-preview-7</version>
60-
<scope>provided</scope>
61-
</dependency>
62-
63-
<!-- KMS Encryption utility -->
64-
<dependency>
65-
<groupId>software.amazon.awssdk</groupId>
66-
<artifactId>kms</artifactId>
67-
<version>2.0.0-preview-7</version>
68-
<scope>provided</scope>
69-
</dependency>
70-
7161
<!-- Shared JSON-P Implementation Test Dependency -->
7262
<dependency>
7363
<groupId>org.apache.johnzon</groupId>
7464
<artifactId>johnzon-jaxrs</artifactId>
75-
<version>1.1.5</version>
65+
<version>1.1.7</version>
7666
<scope>test</scope>
7767
</dependency>
7868

79-
8069
<!-- JAX-RS Request Filter Test Dependencies -->
8170

8271
<dependency>
8372
<groupId>org.apache.cxf</groupId>
8473
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
85-
<version>3.2.1</version>
74+
<version>3.2.2</version>
8675
<scope>test</scope>
8776
</dependency>
8877

8978
<dependency>
9079
<groupId>org.apache.cxf</groupId>
9180
<artifactId>cxf-rt-rs-client</artifactId>
92-
<version>3.2.1</version>
81+
<version>3.2.2</version>
9382
<scope>test</scope>
9483
</dependency>
9584

85+
<dependency>
86+
<groupId>org.glassfish.jaxb</groupId>
87+
<artifactId>jaxb-runtime</artifactId>
88+
<version>2.3.0.1</version>
89+
<scope>test</scope>
90+
</dependency>
91+
92+
<dependency>
93+
<groupId>javax.activation</groupId>
94+
<artifactId>activation</artifactId>
95+
<version>1.1.1</version>
96+
<scope>test</scope>
97+
</dependency>
98+
99+
96100
<!-- AWS HTTP Client Test Dependencies -->
97101

98102
<dependency>
99103
<groupId>software.amazon.awssdk</groupId>
100104
<artifactId>apache-client</artifactId>
101-
<version>2.0.0-preview-7</version>
105+
<version>${aws.version}</version>
102106
<scope>test</scope>
103107
</dependency>
104108

0 commit comments

Comments
 (0)