TursomServer/ts-core/ts-buffer/build.gradle.kts

16 lines
298 B
Plaintext
Raw Normal View History

2021-04-11 18:15:58 +08:00
plugins {
kotlin("jvm")
2021-04-11 18:48:18 +08:00
`maven-publish`
2021-08-23 15:52:10 +08:00
id("ts-gradle")
2021-04-11 18:15:58 +08:00
}
dependencies {
2021-07-13 13:35:14 +08:00
implementation(project(":ts-core:ts-log"))
2021-04-11 23:38:28 +08:00
implementation(project(":ts-core"))
2021-08-18 17:37:19 +08:00
compileOnly(group = "io.netty", name = "netty-all", version = "4.1.67.Final")
2021-04-11 18:15:58 +08:00
}
2021-04-19 16:19:35 +08:00
artifacts {
archives(tasks["kotlinSourcesJar"])
}