1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >aws-dynamodb-v2</artifactId >
7+ <version >0.1.0-SNAPSHOT</version >
8+ <packaging >jar</packaging >
9+ <name >aws-dynamodb-v2</name >
10+
11+ <parent >
12+ <groupId >com.baeldung</groupId >
13+ <artifactId >aws-modules</artifactId >
14+ <version >1.0.0-SNAPSHOT</version >
15+ </parent >
16+
17+ <dependencies >
18+ <dependency >
19+ <groupId >software.amazon.awssdk</groupId >
20+ <artifactId >dynamodb</artifactId >
21+ <version >2.31.23</version >
22+ </dependency >
23+ <dependency >
24+ <groupId >org.testcontainers</groupId >
25+ <artifactId >localstack</artifactId >
26+ <version >1.20.6</version >
27+ <scope >test</scope >
28+ </dependency >
29+
30+ <dependency >
31+ <groupId >org.testcontainers</groupId >
32+ <artifactId >testcontainers</artifactId >
33+ <version >1.20.6</version >
34+ <scope >test</scope >
35+ </dependency >
36+
37+ <dependency >
38+ <groupId >software.amazon.awssdk</groupId >
39+ <artifactId >sdk-core</artifactId >
40+ <version >2.31.23</version >
41+ </dependency >
42+
43+ <dependency >
44+ <groupId >software.amazon.awssdk</groupId >
45+ <artifactId >aws-core</artifactId >
46+ <version >2.31.23</version >
47+ </dependency >
48+
49+ <dependency >
50+ <groupId >software.amazon.awssdk</groupId >
51+ <artifactId >netty-nio-client</artifactId >
52+ <version >2.31.23</version >
53+ </dependency >
54+
55+ <dependency >
56+ <groupId >software.amazon.awssdk</groupId >
57+ <artifactId >utils</artifactId >
58+ <version >2.31.23</version >
59+ </dependency >
60+
61+ <dependency >
62+ <groupId >software.amazon.awssdk</groupId >
63+ <artifactId >identity-spi</artifactId >
64+ <version >2.31.23</version >
65+ </dependency >
66+
67+ <dependency >
68+ <groupId >software.amazon.awssdk</groupId >
69+ <artifactId >checksums</artifactId >
70+ <version >2.31.23</version >
71+ </dependency >
72+ </dependencies >
73+
74+ <build >
75+ <plugins >
76+ <plugin >
77+ <groupId >org.apache.maven.plugins</groupId >
78+ <artifactId >maven-dependency-plugin</artifactId >
79+ <version >${maven-plugins-version} </version >
80+ <executions >
81+ <execution >
82+ <id >copy</id >
83+ <phase >compile</phase >
84+ <goals >
85+ <goal >copy-dependencies</goal >
86+ </goals >
87+ <configuration >
88+ <includeScope ></includeScope >
89+ <includeTypes >so,dll,dylib</includeTypes >
90+ <outputDirectory >native-libs</outputDirectory >
91+ </configuration >
92+ </execution >
93+ </executions >
94+ </plugin >
95+ <plugin >
96+ <groupId >org.apache.maven.plugins</groupId >
97+ <artifactId >maven-compiler-plugin</artifactId >
98+ <configuration >
99+ <source >9</source >
100+ <target >9</target >
101+ </configuration >
102+ </plugin >
103+ </plugins >
104+ </build >
105+
106+ <properties >
107+ <aws-java-sdk .version>1.12.331</aws-java-sdk .version>
108+ <gson .version>2.11.0</gson .version>
109+ <dynamodblocal .version>1.21.1</dynamodblocal .version>
110+ <maven-plugins-version >3.1.1</maven-plugins-version >
111+ </properties >
112+
113+ </project >
0 commit comments