I am using this library through Maven but it has issues resolving dependencies when there is a + symbol in the version numbers.
The error I'm getting is:
Could not resolve dependencies for project XXXX: Failure to find org.picketbox:picketbox:jar:4.+ in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
The PBKDF2 pom.xml in Maven Central has such + symbols in it:
<dependency>
<groupId>org.picketbox</groupId>
<artifactId>picketbox</artifactId>
<version>4.+</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.+</version>
<scope>test</scope>
</dependency>
This practice has apparently been 'outlawed' by Sonatype because it was breaking peoples builds.
Thank you for building a great library!
I am using this library through Maven but it has issues resolving dependencies when there is a
+symbol in the version numbers.The error I'm getting is:
Could not resolve dependencies for project XXXX: Failure to find org.picketbox:picketbox:jar:4.+ in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]The PBKDF2 pom.xml in Maven Central has such
+symbols in it:This practice has apparently been 'outlawed' by Sonatype because it was breaking peoples builds.
Thank you for building a great library!