Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 924 Bytes

README.md

File metadata and controls

35 lines (27 loc) · 924 Bytes

Corfu Git Maven Repo

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>