|
Project Information
Links
|
This project hosts Java extensions and convenience classes used by MBARI projects. It's only external dependency is SLF4J. The API documentation is available here. You can obtain the Java jar file for mbarix4j from our Maven Repository. To include it in your maven project add the following to your pom.xml file: <!-- Add the MBARI repository -->
<repository>
<id>mbari-maven-repository</id>
<name>MBARI Maven Repository</name>
<url>http://mbari-maven-repository.googlecode.com/svn/repository/</url>
</repository>
<!-- Add mbarix4j dependency -->
<dependency>
<groupId>org.mbari</groupId>
<artifactId>mbarix4j</artifactId>
<version>1.8.4</version>
</dependency>
|