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.

已提问 2 年前533 查看次数
2 回答
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

已回答 1 年前
  • 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>
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则