Maven
DKPro Core is available via the Maven infrastructure.
As an example, we take the OpenNlpPosTagger component. To make it available in a pipeline, we add the following dependency to our POM file:
<properties>
<dkpro.core.version>2.2.0</dkpro.core.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-asl</artifactId>
<version>${dkpro.core.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-opennlp-asl</artifactId>
</dependency>
</dependencies>
A full list of artifacts is available from Maven Central!
Sources
Get the sources from GitHub.