This orphaned branch stores the Corfu maven artifacts.
Please do not commit to this branch directly. It is controlled by the Travis-CI build.
To use this repository in a maven project, add:
<repositories>
<repository>
<id>mvn-repo</id>
<url>https://github.com/CorfuDB/Corfu-Repos/mvn-repo</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
Most likely, you will want to add a reference to the Corfu artifact as well:
<dependencies>
<dependency>
<groupId>org.corfudb</groupId>
<artifactId>runtime</artifactId>
<version>0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>