-
-
Notifications
You must be signed in to change notification settings - Fork 1
Gradle Setup
Brian edited this page Sep 22, 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 "7.0.0"
}
tasks.shadowJar {
relocate("xyz.tehbrian.restrictionhelper", "[your plugin package].restrictionhelper")
}