We use maven central to deploy our snapshots. You can include our snapshot versions the same way you include any other maven snapshot version.
To use the jibx-maven-plugin you will need to add the snapshot repository to your maven pom file. Remember to bump your jibx version and include the -SNAPSHOT suffix.
Just change your Repository sections to include maven snapshots.
<pluginRepositories>
<pluginRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<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>
</repositories>If you want to use our snapshot version in our runtime code, all you should have to do is bump your jibx version and include the -SNAPSHOT suffix. So, just update your version1.4.2/version to version2.0.0-SNAPSHOT/version or whatever the snapshot version is.