mirror of
https://github.com/tursom/TursomServer.git
synced 2025-02-19 08:10:07 +08:00
24 lines
564 B
Plaintext
24 lines
564 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlin("stdlib-jdk8"))
|
|
api(kotlin("reflect"))
|
|
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-clone"))
|
|
implementation(project(":ts-core:ts-log"))
|
|
api(group = "org.ktorm", name = "ktorm-core", version = "3.4.1")
|
|
compileOnly(group = "com.baomidou", name = "mybatis-plus", version = "3.4.3.4")
|
|
compileOnly(group = "com.google.code.gson", name = "gson", version = "2.8.9")
|
|
|
|
testApi(group = "junit", name = "junit", version = "4.13.2")
|
|
}
|
|
|
|
|
|
|
|
|