JUI is a gui library based on java swing
JUI is hosted on a custom repository at https://maven.cyklon.dev. Replace VERSION with the lastest version (without the v
prefix).
Alternatively, you can download the artifacts from jitpack (not recommended).
repositories {
maven { url "https://maven.cyklon.dev/releases" }
}
dependencies {
implementation "de.cyklon:JUI:VERSION"
}
<repositories>
<repository>
<id>cyklon</id>
<url>https://maven.cyklon.dev/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.cyklon</groupId>
<artifactId>JUI</artifactId>
<version>VERSION</version>
</dependency>
</dependencies>