Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.75 KB

File metadata and controls

53 lines (38 loc) · 1.75 KB

RedUtilities

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

Developed by RedstoneWorld

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:

<repositories>
  <repository>
    <id>redstoneworld-RedUtilities</id>
    <url>https://dl.cloudsmith.io/public/redstoneworld/RedUtilities/maven/</url>
  </repository>
</repositories>

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

Usage with Gradle

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

repositories {
  maven {
    url "https://dl.cloudsmith.io/public/redstoneworld/RedUtilities/maven/"
  }
}

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

Documentation