I'm trying to get JavaHG 0.6 snapshot using the following Maven pom:
<dependencies>
<dependency>
<groupId>com.aragost.javahg</groupId>
<artifactId>javahg</artifactId>
<version>0.6-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype-ossrh</id>
<name>Sonatype Open Source Software Repository Hosting</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
This makes the build fail with the following error:
Could not find artifact com.aragost.javahg:javahg-parent:pom:0.6-SNAPSHOT in sonatype-ossrh (https://oss.sonatype.org/content/repositories/snapshots/) -> [Help 1]
I think this is because 0.6-SNAPSHOT is not found in https://oss.sonatype.org/content/repositories/snapshots/com/aragost/javahg/javahg-parent/
Does anyone know how to make it work?