1. So i add the following line into my pom per instruction from this link: https://dkpro.github.io/dkpro-tc/downloads/
<properties>
<dkpro.tc.version>0.9.0</dkpro.tc.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dkpro.tc</groupId>
<artifactId>dkpro-tc</artifactId>
<version>${dkpro.tc.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dkpro.tc</groupId>
<artifactId>dkpro-tc-core</artifactId>
</dependency>
</dependencies>
2. Then i follow the instruction from this link :
https://zoidberg.ukp.informatik.tu-darmstadt.de/jenkins/job/DKPro%20TC%20Documentation%20(GitHub)/org.dkpro.tc%24dkpro-tc-doc/doclinks/1/
in order to familiarise myself with DKPRO-TC. however i ran into a problem where i could not find de.tudarmstadt.ukp.dkpro.tc.examples.single.document package.
As in i am not sure how to include them in my project.
I try adding the following dependency into my pom file :
<dependency>
<groupId>org.dkpro.tc</groupId>
<artifactId>dkpro-tc-core</artifactId>
</dependency>
But as they are not within the maven repository of course it doesnt work.
Could anyone tell me how to set up my project to include all module of the DKPRO-TC?