TursomServer/ts-core/build.gradle.kts

13 lines
268 B
Plaintext
Raw Normal View History

2021-04-11 18:15:58 +08:00
plugins {
kotlin("jvm")
}
dependencies {
api(project(":"))
compileOnly(group = "com.google.code.gson", name = "gson", version = "2.8.6")
}
@kotlin.Suppress("UNCHECKED_CAST")
(rootProject.ext["excludeTest"] as (Project, TaskContainer) -> Unit)(project, tasks)