Skip to content

cyklon73/JUI

Repository files navigation

[Java CI] [Latest Version]

JUI

JUI is a gui library based on java swing

Installation

JUI is hosted on a custom repository at https://maven.mineking.dev. Replace VERSION with the lastest version (without the v prefix). Alternatively, you can download the artifacts from jitpack (not recommended).

Gradle

repositories {
  maven { url "https://maven.mineking.dev/releases" }
}

dependencies {
  implementation "de.cyklon:JUI:VERSION"
}

Maven

<repositories>
  <repository>
    <id>cyklon</id>
    <url>https://maven.mineking.dev/releases</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>de.cyklon</groupId>
    <artifactId>JUI</artifactId>
    <version>VERSION</version>
  </dependency>
</dependencies>