Note: Do NOT commit to any other branch than dev!
misc. Java Library
Latest release:
Snapshot versions can be found here. Latest snapshot:
Don't forget to replace VERSION in the snippets below with the version shown above!
Maven
<repository>
<id>cheos-repo</id>
<name>cheos-repo</name>
<url>https://repo.cheos.dev/</url>
</repository><dependency>
<groupId>net.aether</groupId>
<artifactId>lib</artifactId>
<version>VERSION</version>
</dependency>Gradle
repositories {
maven {
url "https://repo.cheos.dev/"
}
}
dependencies {
implementation 'net.aether:lib:VERSION'
}