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.

demandé il y a 2 ans533 vues
2 réponses
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

répondu il y a un an
  • 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>
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions