-
-
Notifications
You must be signed in to change notification settings - Fork 1
Gradle Setup
TehBrian edited this page Feb 11, 2021
·
8 revisions
RestrictionHelper is published on Maven Central.
Replace [latest version] with the version found above.
repositories {
mavenCentral()
}
dependencies {
compile 'xyz.tehbrian:restrictionhelper:[latest version]'
}Replace [your plugin package] with your plugin's package.
plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
shadowJar {
relocate 'xyz.tehbrian.restrictionhelper', '[your plugin package].restrictionhelper'
}