TANGO kernel Java implementation improved and patched
- Add GitHub Maven packages repo to pom.xml/settings.xml
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>github-hzg</id>
<url>https://maven.pkg.github.com/hereon-wpi/*</url>
</repository>
</repositories>
- Add corresponding server to settings.xml
<server>
<id>github-hzg</id>
<username>GITHUB_USER</username>
<password>GITHUB_TOKEN</password>
</server>
- Add corresponding dependcy to your pom.xml e.g. server:
<dependency>
<groupId>de.hereon.tango</groupId>
<artifactId>server</artifactId>
<version>1.0.1</version>
</dependency>
See GitHub docs: here