Compile the project with Maven and Java 8 and build an executable java archive:
mvn clean package
Java 8 MUST be used, as the package javax.xml.bin is deprecated/removed in future versions.
The JAR file will be created in the /target
folder
This library is not hosted on maven central. To use it, you have to include our artifact repository to your pom.
<repositories>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>nexus-releases</id>
<name>QBiC Releases</name>
<url>https://qbic-repo.qbic.uni-tuebingen.de/repository/maven-releases</url>
</repository>
</repositories>
Then include this library as an artifact.
<dependency>
<groupId>life.qbic</groupId>
<artifactId>xml-manager-lib</artifactId>
<version>[version]</version>
</dependency>