AWS DynamoDbLocal v.1.19.0 is broken

0

It seems Amazon released a new version for DynamoDbLocal today (10/08/2022) with an empty jar file into thir specific repository. https://s3-us-west-2.amazonaws.com/dynamodb-local/release

If you use the recommended dependency:

<dependency>
   <groupId>com.amazonaws</groupId>
   <artifactId>DynamoDBLocal</artifactId>
   <version>[1.12,2.0)</version>
</dependency>

... then your build will mysteriously fail from today, becasue maven will load the latest available version below 2.0.

asked 2 years ago526 views
2 Answers
0

We are having same issue with DynamoDBLocal/1.21.0 and 1.20.0 latest jars. Latest Jars are only a few KBs in size. Looks like 9 March 2023 update.

https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal/1.21.0 https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal/1.20.0

answered a year ago
  • Can you please use latest version 1.23.0 ? Thanks it still not reflected on Maven central but has been released.

    <!--Dependency:-->
    <dependencies>
       <dependency>
          <groupId>com.amazonaws</groupId>
          <artifactId>DynamoDBLocal</artifactId>
          <version>1.23.0</version>
       </dependency>
    </dependencies>
    
0

Change your dependency to the latest working version:

<dependency>
   <groupId>com.amazonaws</groupId>
   <artifactId>DynamoDBLocal</artifactId>
   <version>1.18.0</version>
</dependency>
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions