Search code examples
javaintellij-ideand4j

IntelliJ IDEA can't get last version of dependence


I trying to import last version of org.nd4j:nd4j-api:0.4-rc3.7, but there is only org.nd4j:nd4j-api:0.4-rc1.2. So, how to add last version of nd4j?


Solution

  • Add this to your pom.xml

    <dependency>
        <groupId>org.nd4j</groupId>
        <artifactId>nd4j-api</artifactId>
        <version>0.4-rc3.7</version>
    </dependency>
    

    Make sure your maven has access to maven central.