Maven
From Encog Machine Learning Framework
Maven is a software tool for project management and build automation. All official Encog JAR's are built using Maven.
Contents |
Encog Snapshots
Adding Encog Core Snapshot as a Dependency
The following will add the latest official stable release of Encog.
<dependency> <groupId>org.encog</groupId> <artifactId>encog-core</artifactId> <version>3.0.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.
<dependency> <groupId>org.encog</groupId> <artifactId>encog-core</artifactId> <version>3.1.0-SNAPSHOT</version> </dependency>