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.
Note: Replace %version% with the latest version of RedRestrictionHelper:
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>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%'
}
