Further work and debugging on plugin integration

This commit is contained in:
grimsi
2024-10-11 10:18:48 +02:00
parent bfcd3d83c9
commit cc6056fce8
12 changed files with 158 additions and 78 deletions
+9 -2
View File
@@ -4,6 +4,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
allprojects {
repositories {
mavenLocal()
mavenCentral()
}
}
@@ -22,11 +23,17 @@ subprojects {
tasks.withType<KotlinJvmCompile> {
compilerOptions {
apiVersion = KotlinVersion.KOTLIN_2_2
languageVersion = KotlinVersion.KOTLIN_2_2
languageVersion = KotlinVersion.KOTLIN_2_0
apiVersion = KotlinVersion.KOTLIN_2_0
jvmTarget = JvmTarget.JVM_21
progressiveMode = true
freeCompilerArgs.add("-Xjsr305=strict")
}
}
}
tasks.named("build") {
dependsOn(":gameyfin:uberJar")
}
extra.set("pluginDir", rootProject.layout.buildDirectory.get().asFile.resolve("plugins"))