CorfuDB / Corfu-Repos

Repositories for Corfu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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>

About

Repositories for Corfu