Maven error on Gradle version specification

Hi,

With Stardog 5.3.0
The Maven artifact:
com.complexible.stardog.core:stardog-core-shared
has a dependency on
com.amazonaws:aws-java-sdk-s3:1.11.+
The version indication
1.11.+
which is a Gradle notation which will not work in standard maven.

Any hint ?

Hi,

This has already been found and fixed for the next release. The workaround until then is to add an explicit aws-java-sdk-s3 dependency to your pom.xml

1 Like

Was typing this answer..

I can solve it locally ofcourse with a project dependency:
<dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.11.331</version> </dependency>