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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南