Skip to content

Configuring your project

nacx edited this page May 25, 2012 · 6 revisions

Maven configuration

To use jclouds-abiquo in your proyect, just add the dependency in your pom.xml:

<dependency>
    <groupId>org.jclouds.provider</groupId>
    <artifactId>jclouds-abiquo</artifactId>
    <version>RELEASE</version>
</dependency>

You will also have to add the Sonatype and the Abiquo Maven repositories to your pom.xml as follows:

<repositories>
    <repository>
        <id>jclouds</id>
        <name>Sonatype Repository</name>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
    <repository>
        <id>abiquo-repo</id>
        <name>Abiquo Maven Repository</name>
        <url>http://repo.community.abiquo.com/repo</url>
    </repository>
</repositories>

Back to Home