There has been made no release build of JavaHg. When that is done the plan is to deploy to Maven Central
Snapshot builds is deployed to https://oss.sonatype.org/content/repositories/snapshots/ You have to define the repository in your pom.xml. In the repositories section write
<repository>
<id>sonatype-ossrh</id>
<name>Sonatype Open Source Software Repository Hosting</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>Dependency is defined as
<dependency>
<groupId>com.aragost.javahg</groupId>
<artifactId>javahg</artifactId>
<version>0.2-SNAPSHOT</version>
</dependency>