-
Notifications
You must be signed in to change notification settings - Fork 54
Using Development Versions
Malte Isberner edited this page Feb 7, 2014
·
1 revision
Development (or snapshot) versions of LearnLib are not deployed to the Maven Central repository. Instead, they are hosted on the Sonatype OSS repository. If you want to use more recent (but possibly unstable) development versions rather than the regular releases, please add the following repository information to your POM (your parent POM in case of a multi-module build):
<repositories>
<!-- ... other repositories ... -->
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>
https://oss.sonatype.org/content/repositories/snapshots
</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- ... more other repositories ... -->
</repositories>