0
0
mirror of https://github.com/tursom/TursomServer.git synced 2025-03-26 01:20:08 +08:00
TursomServer/ts-core/ts-reflect/build.gradle.kts

20 lines
397 B
Plaintext
Raw Permalink Normal View History

2022-01-08 21:22:42 +08:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
2023-10-27 18:11:28 +08:00
kotlin("plugin.allopen")
2022-01-08 21:22:42 +08:00
}
dependencies {
api(project(":ts-core"))
api(project(":ts-core:ts-log"))
testApi(group = "junit", name = "junit", version = "4.13.2")
}
artifacts {
archives(tasks["kotlinSourcesJar"])
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.freeCompilerArgs += "-Xjvm-default=all"
}