Menu

Neuroph 2.8 Maven

Damien
2014-01-16
2014-08-22
  • Damien

    Damien - 2014-01-16

    Hi,
    Thanks for that nice framework !

    We (my team and I) are currently using it on a university project. The purpose is to detect available parking spaces on the streets relying on video surveillance cameras and image recognition.

    We are using Maven and we added this repository for Neuroph dependency :
    <repository>
    <id>neuroph.org</id>
    <url>http://neuroph.sourceforge.net/maven2</url>
    </repository>

    Unfortunatly there is not the 2.8 version of Neuroph (2.7 only). Is that possible for you to add the 2.8 version of Neuroph to this (or an other) Maven repository ? with Maven Javadoc and Maven sources it would be very great

    Thanks again for that great work !

    Steve and Damien

     
  • xvoox

    xvoox - 2014-02-03

    Could you elaborate on how to add neuroph as a maven dependency? I can't get it to work. Thanks

     
  • Zoran Sevarac

    Zoran Sevarac - 2014-02-11

    Put the following in your pom file:

    <repositories>
    <repository>
    <id>neuroph.sourceforge.net</id>
    <url>http://neuroph.sourceforge.net/maven2/</url>
    </repository>
    </repositories>

    to add repository, and

    <dependencies>
    <dependency>
    <groupId>org.neuroph</groupId>
    <artifactId>neuroph-core</artifactId>
    <version>2.8</version>
    </dependency>
    </dependencies>

    to add dependency to neuroph-core
    Add other dependencies the same way as needed

     
  • Sean Barbeau

    Sean Barbeau - 2014-08-06

    I agree with @Christopher - the maven repository path for v2.8 release is malformed. It looks like the version number was mistakenly injected in between the groupId and artifactId.

    Using Gradle (Android), I can successfully add the dependency for v2.7:

    compile 'org.neuroph:neuroph-core:2.7'
    

    but v2.8 fails:

    compile 'org.neuroph:neuroph-core:2.8'
    
     

    Last edit: Sean Barbeau 2014-08-06
  • Zoran Sevarac

    Zoran Sevarac - 2014-08-08

    You're right, I'll change that. Thanks!

     
  • Zoran Sevarac

    Zoran Sevarac - 2014-08-08

    Its fixed now, let me know if it works as expected

     
    • xochi

      xochi - 2014-08-16

      I think you broke even the 2.7 version now.

      Maven says:
      [INFO] Downloading: http://neuroph.sourceforge.net/maven2/org/neuroph/neuroph-core/2.8/neuroph-core-2.8.pom
      [WARNING] The POM for org.neuroph:neuroph-core:jar:2.8 is missing, no dependency information available

      You have to move both directories 2.7 and 2.8 to the right place so maven can find it.

       

      Last edit: xochi 2014-08-16

Log in to post a comment.