ter
We’re not yet in the Maven public repositories, but we have convinced our Google hosted SVN repository to serve up the packages for us.
<dependency> <groupId>com.seventytwomiles</groupId> <artifactId>architecture-rules</artifactId> <version>2.1.1</version> </dependency>
This file may or may not exist depending on how close to a release we are.
<dependency> <groupId>com.seventytwomiles</groupId> <artifactId>architecture-rules</artifactId> <version>3.0.0-SNAPSHOT</version> </dependency>
You’ll also need to declare our repository until we can get into the public Maven repositories. Join the user mailing list and we will let you as soon as we get to the public repositories.
<repository> <id>architect-rules-repo</id> <name>architecture-rules repository</name> <layout>default</layout> <url> http://architecturerules.googlecode.com/svn/maven2/ </url> <releases> <checksumPolicy>ignore</checksumPolicy> </releases> <snapshots> <checksumPolicy>ignore</checksumPolicy> </snapshots> </repository>