9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-28 03:09:14 +00:00

Fix execution optimisation error with gradle

This commit is contained in:
SamB440
2022-05-31 18:47:41 +01:00
parent 0009c8705e
commit 335c457dec
3 changed files with 5 additions and 6 deletions

View File

@@ -10,7 +10,6 @@ dependencies {
testImplementation("junit:junit:4.13.2")
implementation(project(":rpgregions", "shadow"))
implementation(project(":modern", "shadow"))
implementation(project(":api", "shadow"))
}
allprojects {

View File

@@ -7,6 +7,9 @@ tasks.compileJava {
}
dependencies {
implementation(project(":api"))
implementation(project(":rpgregions"))
testImplementation("junit:junit:4.13.2")
compileOnly("org.spigotmc:spigot-api:1.18.2-R0.1-SNAPSHOT")
@@ -18,7 +21,4 @@ dependencies {
compileOnly(":GriefPrevention") // griefprevention
compileOnly("com.github.angeschossen:LandsAPI:6.0.2") // lands
if (ultraRegionsSupport) compileOnly(":UltraRegions") // ultraregions
compileOnly(project(":api", "shadow"))
compileOnly(project(":rpgregions", "shadow"))
}

View File

@@ -3,6 +3,8 @@ repositories {
}
dependencies {
implementation(project(":api"))
testImplementation("junit:junit:4.13.2")
testImplementation("com.github.seeseemelk:MockBukkit-v1.17:1.13.0")
testImplementation("org.reflections:reflections:0.10.2")
@@ -39,8 +41,6 @@ dependencies {
}
compileOnly(":Dynmap-3.1-spigot") // Dynmap
compileOnly("com.comphenix.protocol:ProtocolLib:4.7.0")
compileOnly(project(":api"))
}
configurations.all {