Maven

DL-Learner uses Maven. You can easily include it in your Maven project by adding the following to your pom.xml.
Include our AKSW group repository:

For the release versions:

<repository>
   <id>maven.aksw.internal</id>
   <url>http://maven.aksw.org/repository/internal/</url>
</repository>

For the snapshot version:

<repository>
   <id>maven.aksw.snapshot</id>
   <url>http://maven.aksw.org/repository/snapshots/</url>
</repository>

Specify DL-Learner as dependency, most likely the components-core module:

<dependency>
   <groupId>org.dllearner</groupId>
   <artifactId>components-core</artifactId>
   <version>insert version number here</version>
</dependency>

You can find existing version numbers at DL-Learner Core Module Release Versions.