mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-19 08:10:07 +08:00
13 lines
268 B
Plaintext
13 lines
268 B
Plaintext
|
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)
|
||
|
|