osama-raddad / encog-java

Automatically exported from code.google.com/p/encog-java
0 stars 0 forks source link

Maven support for Encog #31

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
the POM for Encog

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

Attachments:

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Thanks!  Added POM file.

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