-
-
Notifications
You must be signed in to change notification settings - Fork 1
Gradle Setup
TehBrian edited this page Mar 15, 2023
·
8 revisions
RestrictionHelper is published on https://repo.thbn.me.
Replace [latest version] with the library's latest release.
repositories {
maven("https://repo.thbn.me/releases/")
}
dependencies {
implementation("dev.tehbrian.restrictionhelper:restrictionhelper-spigot:[latest version]")
}Replace [your plugin package] with your plugin's package.
plugins {
id("com.github.johnrengelman.shadow") version "7.1.2"
}
tasks.shadowJar {
relocate("dev.tehbrian.restrictionhelper", "[your plugin package].libs.restrictionhelper")
}