You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>