mirror of
https://github.com/tursom/TursomServer.git
synced 2025-01-09 20:00:30 +08:00
16 lines
339 B
Plaintext
16 lines
339 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":ts-core"))
|
||
|
api(project(":ts-core:ts-encrypt"))
|
||
|
api(project(":ts-core:ts-buffer"))
|
||
|
api(project(":ts-core:ts-pool"))
|
||
|
api(project(":ts-core:ts-log"))
|
||
|
}
|
||
|
|
||
|
@kotlin.Suppress("UNCHECKED_CAST")
|
||
|
(rootProject.ext["excludeTest"] as (Project, TaskContainer) -> Unit)(project, tasks)
|
||
|
|