aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2021-03-03 18:02:11 +0000
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2021-03-03 18:02:11 +0000
commita1c3ac868ac13732f6f82f9074c2c27e3fde9ecd (patch)
treec11d3f35266f04658c10d1c61996bd5c5cd1ae06 /build.gradle
parentd466534db12c3e3c5498f2bfb775672c210f86fe (diff)
Add support for CoreProtect + cleanup
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 2af494ef..f2e2c2b3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -36,6 +36,8 @@ repositories {
maven { url = 'https://repo.essentialsx.net/releases/' }
// JitPack (IridiumSkyblock, ShopGUI+)
maven { url = 'https://jitpack.io' }
+ // CoreProtect
+ maven { url = 'https://maven.playpro.com/' }
mavenCentral()
}
@@ -79,6 +81,10 @@ dependencies {
compileOnly "net.ess3:EssentialsX:2.18.2"
// ShopGUI+
compileOnly 'com.github.brcdev-minecraft:shopgui-api:master-SNAPSHOT'
+ // CoreProtect
+ compileOnly ('net.coreprotect:coreprotect:2.18.2') {
+ exclude group: 'com.sk89q.worldedit', module: 'worldedit-bukkit'
+ }
compileOnly fileTree(dir: 'libs', includes: ['*.jar'])
}