mirror of
https://github.com/tursom/TursomServer.git
synced 2025-03-23 16:10:06 +08:00
16 lines
237 B
Plaintext
16 lines
237 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":"))
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-log"))
|
|
api(group = "redis.clients", name = "jedis", version = "3.3.0")
|
|
}
|
|
|
|
|
|
|
|
|