-
Notifications
You must be signed in to change notification settings - Fork 34
Using Development Versions
mtf90 edited this page Feb 13, 2018
·
1 revision
Development (or snapshot) versions of AutomataLib 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>