Skip to content

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>

Clone this wiki locally