Mercurial Source Repository
The primary Mercurial repository is hosted at Project Kenai.
A backup Mercurial repository is also hosted over at BitBucket which is publicly accessible. That repository should be in sync most of the time with the primary repository – if it is not then it will be out by a few days at most.
You can also follow commits to the bitbucket repository on twitter.
To check out the source you can use one of the following lines to make a clone locally – the first line is for the primary repository, the second for the backup:
hg clone https://hg.kenai.com/hg/retepmicrokernel~hg retepmicrokernel hg clone http://bitbucket.org/petermount/retepmicrokernel/
Downloading / Maven
This project requires the use of Apache Maven. The built artifacts are published on the Sonatype’s Public Nexus instance and can be accessed by adding the following to your project’s root pom:
<repositories>
<repository>
<id>retep.releases</id>
<name>retep.org Maven 2 Repository</name>
<url>http://oss.sonatype.org/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>retep.releases</id>
<name>retep.org Maven 2 Repository</name>
<url>http://oss.sonatype.org/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
Please note: Currently due to dependencies on artifacts that are not currently in Maven Centrall, these artifacts are not jet available within the Maven Central repository. It is hoped that in the next couple of releases to make this project available within Maven Central. The migration to Sonatype’s OSS repository is the initial step of that process.