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

답변함 일 년 전
  • 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년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠