Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/utilities/idempotency.md
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,9 @@ To unit test your function with DynamoDB Local, you can refer to this guide to [
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>DynamoDBLocal</artifactId>
<version>[1.12,2.0)</version>
<!-- Use newest version if you are on Java >11 -->
<!-- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocalHistory.html -->
<version>2.2.0</version>
<scope>test</scope>
</dependency>
<!-- Needed when building locally on M1 Mac -->
Expand Down
12 changes: 7 additions & 5 deletions powertools-idempotency/powertools-idempotency-dynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand Down Expand Up @@ -62,7 +62,9 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>DynamoDBLocal</artifactId>
<version>[1.12,2.0)</version>
<!-- >2.2.0 is not compatible with Java 11 anymore -->
<!-- https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocalHistory.html -->
<version>2.2.0</version>
<scope>test</scope>
</dependency>
<!--Needed when building locally on M1 Mac-->
Expand All @@ -85,7 +87,7 @@
<manifestEntries>
<Automatic-Module-Name>software.amazon.awssdk.enhanced.dynamodb</Automatic-Module-Name>
</manifestEntries>
</archive>
</archive>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -123,4 +125,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading