Encog and Maven

Maven is a software tool for project management and build automation. All official Encog JAR’s are built using Maven.
Contents

The following will add the 3.3 release of Encog.

1
2
3
4
5
<dependency>
<groupId>org.encog</groupId>
<artifactId>encog-core</artifactId>
<version>3.3.0</version>
</dependency>

Adding Encog Core Snapshot as a Dependency

The following will add the latest snapshot of Encog. The latest snapshot is very experimental, but it does contain the absolute latest source code.

1
2
3
4
5
<dependency>
<groupId>org.encog</groupId>
<artifactId>encog-core</artifactId>
<version>3.4.0-SNAPSHOT</version>
</dependency></pre>