TursomServer/ts-core/ts-reflect/build.gradle.kts

20 lines
397 B
Plaintext

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("plugin.allopen")
}
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"
}