How can I add the latest release version (newer than 1.0.0-beta7) with Maven to pom.xml

Currently, my implementation in Maven is:

org.deeplearning4j
deeplearning4j-core
${dl4j.version}

where dl4j.version = 1.0.0-beta7.

I noticed some bugs could already be fixed and checked into the latest release version, is there any way that I can use the latest version in my pom file? Thanks.

@FanDev you’ll have to add the following in your pom.xml file:

<repositories>
    <repository>
      <id>oss.sonatype.org-snapshot</id>
      <url>http://oss.sonatype.org/content/repositories/snapshots</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

Then you can just change the version to 1.0.0-SNAPSHOT