Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.88 KB

File metadata and controls

53 lines (38 loc) · 1.88 KB

RedRestrictionHelper

RedRestrictionHelper is a small Java toolkit for Minecraft PaperMC plugin development. It was designed to perform restriction checks via event calls or API queries to the restriction plugins installed on the server.

Developed by RedstoneWorld

Development with RedRestrictionHelper

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

Latest version of 'redrestrictionhelper' @ Cloudsmith

Usage with Maven

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

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

<repositories>
  <dependency>
    <groupId>de.redstoneworld.redrestrictionhelper</groupId>
    <artifactId>redrestrictionhelper</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/redrestrictionhelper/maven/"
  }
}

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

Documentation