Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 613 Bytes

dependingViaMaven.md

File metadata and controls

26 lines (18 loc) · 613 Bytes

Depending on CLIJ

If you want to access CLIJ from your Java code, it is recommended to depend on CLIJ via Maven dependencies. Add this dependency to the pom.xml file of your project:

<dependency>
  <groupId>net.haesleinhuepf</groupId>
  <artifactId>clij_</artifactId>
  <version>1.6.0</version>
</dependency>

To allow maven finding this artifact, add a repository to your pom.xml file:

<repository>
  <id>clij</id>
  <url>http://dl.bintray.com/haesleinhuepf/clij</url>
</repository>

Back to CLIJ documentation

Imprint