mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-25 03:10:13 +08:00
13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":ts-core:ts-buffer"))
|
|
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)
|
|
|