Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 938 Bytes

how2start.md

File metadata and controls

29 lines (21 loc) · 938 Bytes

#How to start

Add Leech to your maven project

Leech is offered in our own repository. Add following entries to your pom.xml:

<repositories>
   <repository>
      <id>dfki-km-libs-releases-local</id>
      <url>http://www.dfki.uni-kl.de/artifactory2/libs-releases-local</url>
   </repository>
   <repository>
      <id>dfki-km-libs-snapshots-local</id>
      <url>http://www.dfki.uni-kl.de/artifactory2/libs-snapshots-local</url>
   </repository>
</repositories>

and in the <dependencies> section

<dependency>
   <groupId>de.dfki.km</groupId>
   <artifactId>leech</artifactId>
   <version>1.3</version>
</dependency>

You can also download all needed libraries in the case you don't use maven.

As a next step, try out our Code snippets / examples section.