mirror of
https://github.com/tursom/TursomServer.git
synced 2025-01-09 11:50:48 +08:00
14 lines
328 B
Plaintext
14 lines
328 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":ts-core:ts-buffer"))
|
||
|
api(project(":ts-core:ts-hash"))
|
||
|
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)
|
||
|
|