TursomServer/ts-core/ts-buffer/build.gradle.kts
2023-10-25 10:30:01 +08:00

17 lines
342 B
Plaintext

plugins {
kotlin("jvm")
id("ts-gradle")
}
dependencies {
implementation(project(":ts-core:ts-log"))
implementation(project(":ts-core"))
compileOnly(group = "io.netty", name = "netty-all", version = nettyVersion)
testApi(group = "junit", name = "junit", version = "4.13.2")
}
artifacts {
archives(tasks["kotlinSourcesJar"])
}