Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 57
Using Development Versions
Markus Frohme edited this page Jul 2, 2026
·
2 revisions
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>
<name>Central Portal Snapshots</name>
<id>central-portal-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- ... other repositories ... -->
</repositories>