Attempt to fix dependency resolution with PlotSquared

This commit is contained in:
MattBDev 2019-09-21 21:14:36 -04:00
parent 24a147465d
commit 94e4fb089a
2 changed files with 8 additions and 1 deletions

View File

@ -59,7 +59,7 @@ dependencies {
"implementation"("com.thevoxelbox.voxelsniper:voxelsniper:5.171.0") { isTransitive = false }
"implementation"("com.comphenix.protocol:ProtocolLib-API:4.4.0-SNAPSHOT") { isTransitive = false }
"implementation"("com.wasteofplastic:askyblock:3.0.8.2") { isTransitive = false }
"compileOnly"("com.github.intellectualsites.plotsquared:PlotSquared-API:latest") {
"compile"("com.github.intellectualsites.plotsquared:PlotSquared-API:latest") {
isTransitive = false
}
}

View File

@ -6,6 +6,10 @@ plugins {
id("net.ltgt.apt-idea")
}
repositories {
maven { url = uri("http://ci.athion.net/job/PlotSquared-Breaking/ws/mvn/") }
}
applyPlatformAndCoreConfiguration()
configurations.all {
@ -34,6 +38,9 @@ dependencies {
"compile"("co.aikar:fastutil-lite:1.0")
"compile"("com.github.luben:zstd-jni:1.4.3-1")
"compileOnly"("net.fabiozumbi12:redprotect:1.9.6")
"compile"("com.github.intellectualsites.plotsquared:PlotSquared-API:latest") {
isTransitive = false
}
}
tasks.withType<JavaCompile>().configureEach {