mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-19 08:10:07 +08:00
13 lines
252 B
Plaintext
13 lines
252 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":ts-core:ts-buffer"))
|
||
|
api(project(":ts-core:ts-datastruct"))
|
||
|
}
|
||
|
|
||
|
@kotlin.Suppress("UNCHECKED_CAST")
|
||
|
(rootProject.ext["excludeTest"] as (Project, TaskContainer) -> Unit)(project, tasks)
|
||
|
|