Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.34 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.34 KB

RedUtilities

RedUtilities is a small Java toolkit for Minecraft plugin development. The preparation of the methods was designed for the application of RedstoneWorld plugins, but can be useful with any pattern.

Development with RedUtilities

Note: Replace %version% with the latest version of RedUtilities:

Latest version of 'redutilities' @ Cloudsmith

Usage with Maven

Add the following to your Java project pom.xml file:

<dependency>
    <groupId>de.redstoneworld.redutilities</groupId>
    <artifactId>redutilities</artifactId>
    <version>%version%</version>
</dependency>

Usage with Gradle

Add the following to your Java project build.gradle file:

repositories {
    maven {
        name = 'cloudsmith'
        url = 'https://dl.cloudsmith.io/public/redstoneworld/RedUtilities/maven/'
    }
}

dependencies {
    implementation 'de.redstoneworld.redutilities:redutilities:%version%'
}

Javadoc

You can find the Javadoc of RedUtilities here.