mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-25 11:20:12 +08:00
16 lines
298 B
Plaintext
16 lines
298 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":ts-core:ts-log"))
|
|
implementation(project(":ts-core"))
|
|
compileOnly(group = "io.netty", name = "netty-all", version = "4.1.67.Final")
|
|
}
|
|
|
|
artifacts {
|
|
archives(tasks["kotlinSourcesJar"])
|
|
}
|