diff --git a/SpigotCore/build.gradle.kts b/SpigotCore/build.gradle.kts index 4658d13d..f1d7e3a3 100644 --- a/SpigotCore/build.gradle.kts +++ b/SpigotCore/build.gradle.kts @@ -19,7 +19,7 @@ plugins { id("base") - id("java") + id("java-library") id("com.github.johnrengelman.shadow") } @@ -44,17 +44,17 @@ dependencies { compileOnly("org.projectlombok:lombok:1.18.32") annotationProcessor("org.projectlombok:lombok:1.18.32") - implementation(project(":SpigotCore:SpigotCore_Main")) - implementation(project(":SpigotCore:SpigotCore_8")) - implementation(project(":SpigotCore:SpigotCore_9")) - implementation(project(":SpigotCore:SpigotCore_10")) - implementation(project(":SpigotCore:SpigotCore_12")) - implementation(project(":SpigotCore:SpigotCore_14")) - implementation(project(":SpigotCore:SpigotCore_15")) - implementation(project(":SpigotCore:SpigotCore_18")) - implementation(project(":SpigotCore:SpigotCore_19")) - implementation(project(":SpigotCore:SpigotCore_20")) + api(project(":SpigotCore:SpigotCore_Main")) + api(project(":SpigotCore:SpigotCore_8")) + api(project(":SpigotCore:SpigotCore_9")) + api(project(":SpigotCore:SpigotCore_10")) + api(project(":SpigotCore:SpigotCore_12")) + api(project(":SpigotCore:SpigotCore_14")) + api(project(":SpigotCore:SpigotCore_15")) + api(project(":SpigotCore:SpigotCore_18")) + api(project(":SpigotCore:SpigotCore_19")) + api(project(":SpigotCore:SpigotCore_20")) - implementation(project(":CommonCore")) - implementation(project(":CommandFramework")) + api(project(":CommonCore")) + api(project(":CommandFramework")) }