osama-raddad/encog-java

Maven support for Encog

Closed this issue · 4 comments

Maven is a great build tool (for me much better that Ant used by Encog),
most opensource Java projects seem to use Maven. Unfortunately Encog isn't
integrated with Maven, so I couldn't use Encog in my Maven-based project.

So I made my own pom.xml (Maven configuration file) - in the attachment. I
would be very pleased if this pom.xml was included in the official Encog
source tree and distribution.


Original issue reported on code.google.com by iir...@gmail.com on 25 Feb 2010 at 8:56

the POM for Encog

Original comment by iir...@gmail.com on 25 Feb 2010 at 8:57

Attachments:

How to build Encog with Maven?
- download Apache Maven
- download Encog sources somewhere
- put the attachemed POM into the directory with Encog sources
- rename src directory into src/main/java
- rename test directory into src/test/java
- type mvn clean install to build Encog locally
- type mvn clean deploy to build Encog locally and deploy all jars to java.net
servers; this requires an account at java.net/maven2 project

To use Encog in other Maven projects now it's enough to add to that project's 
POM:
        <dependency>
            <groupId>org.encog</groupId>
            <artifactId>encog-core</artifactId>
            <version>2.3.0-iirekm</version>
        </dependency>


Original comment by iir...@gmail.com on 25 Feb 2010 at 9:01

[deleted comment]
Thanks!  Added POM file.

Original comment by heatonre...@gmail.com on 14 Aug 2010 at 2:52

  • Changed state: Fixed