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

24 lines
535 B
Plaintext
Raw Normal View History

2021-08-25 15:26:58 +08:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2021-08-25 14:31:58 +08:00
plugins {
kotlin("jvm")
`maven-publish`
id("ts-gradle")
kotlin("plugin.allopen") version "1.5.21"
}
dependencies {
api(project(":ts-core"))
implementation("cglib:cglib:3.3.0")
implementation("org.apache.commons", "commons-lang3", "3.8.1")
testApi(group = "junit", name = "junit", version = "4.13.2")
}
artifacts {
archives(tasks["kotlinSourcesJar"])
}
2021-08-25 15:26:58 +08:00
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions.freeCompilerArgs += "-Xjvm-default=all"
}