Maven Repositories
Open Anzo uses Maven 2 as it's primary build tool and provides up-to-date artifacts of all Open Anzo components to the Maven 2 community.
Repository URLs:
- http://www.openanzo.org/maven-repositories/snapshot
- http://www.openanzo.org/maven-repositories/release
Configuration
To add OpenAnzo components to a Maven 2 build, first add the repository to a pom.xml, then add the artifacts you need as dependencies:
<project>
...
<repositories>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<id>openanzo-snapshots</id>
<name>OpenAnzo Snapshots</name>
<url>http://www.openanzo.org/maven-repositories/snapshot</url>
<layout>default</layout>
</repository>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<id>openanzo-releases</id>
<name>OpenAnzo Releases</name>
<url>http://www.openanzo.org/maven-repositories/release</url>
<layout>default</layout>
</repository>
</repositories>
...
</project>
For the 2.5.1 Client:
...
<dependency>
<groupId>org.openanzo</groupId>
<artifactId>anzo-client</artifactId>
<version>2.5.1</version>
</dependency>
...
For the 3.0 Client SNAPSHOT:
...
<dependency>
<groupId>org.openanzo</groupId>
<artifactId>anzo-client</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
...
Download in other formats:
Copyright © 2007 - 2008 OpenAnzo.org


