This commit is contained in:
Frank van der Heijden 2020-06-07 19:01:23 +02:00
parent 5efa4cd5be
commit a388981194
No known key found for this signature in database
GPG key ID: 26DA56488D314D11

View file

@ -5,7 +5,7 @@ plugins {
String packagePath = 'net.frankheijden.serverutils' String packagePath = 'net.frankheijden.serverutils'
group = packagePath group = packagePath
version '1.1.0' version '1.2.0'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
repositories { repositories {
@ -16,6 +16,7 @@ repositories {
dependencies { dependencies {
implementation 'co.aikar:acf-paper:0.5.0-SNAPSHOT' implementation 'co.aikar:acf-paper:0.5.0-SNAPSHOT'
implementation 'org.bstats:bstats-bukkit:1.7'
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT' compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
} }
@ -35,6 +36,7 @@ compileJava {
shadowJar { shadowJar {
relocate 'co.aikar.commands', packagePath + '.acf' relocate 'co.aikar.commands', packagePath + '.acf'
relocate 'co.aikar.locales', packagePath + '.locales' relocate 'co.aikar.locales', packagePath + '.locales'
relocate 'org.bstats.bukkit', packagePath + '.dependencies.bstats'
} }
build.dependsOn shadowJar build.dependsOn shadowJar