-
Notifications
You must be signed in to change notification settings - Fork 269
Maven instructions
Dimitris Kontokostas edited this page Feb 3, 2016
·
11 revisions
DBpedia is now available in maven central and you can include it in your project like this:
<dependencies>
...
<dependency>
<groupId>org.dbpedia.extraction</groupId>
<artifactId>{artifact}</artifactId>
<version>{version}</version>
</dependency>
...
</dependencies>
For versions prior to 3.9 you need to include the following repositories
<repositories>
...
<repository>
<id>maven.aksw.internal</id>
<name>University Leipzig, AKSW Maven2 Repository</name>
<url>http://maven.aksw.org/repository/internal</url>
</repository>
<repository>
<id>maven.aksw.snapshots</id>
<name>University Leipzig, AKSW Maven2 Repository</name>
<url>http://maven.aksw.org/repository/snapshots</url>
</repository>
...
</repositories>