I am fairly new to maven and I cannot figure out how do I embed Apache Stanbol in my Maven application.
I have added the below dependency to my pom, the <type>
is pom as there is no jar available in the repository.
`</dependencies>
<dependency>
<groupId>org.apache.stanbol</groupId>
<artifactId>apache-stanbol</artifactId>
<version>0.12.0</version>
<type>pom</type>
</dependency>
</dependencies>`
How do I include Apache Stanbol in my java application, like open-nlp which is straight forward
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-tools</artifactId>
<version>1.5.3</version>
</dependency>