TursomServer/ts-database/build.gradle.kts

24 lines
564 B
Plaintext
Raw Normal View History

2021-04-12 10:47:31 +08:00
plugins {
kotlin("jvm")
`maven-publish`
2021-08-23 15:52:10 +08:00
id("ts-gradle")
2021-04-12 10:47:31 +08:00
}
dependencies {
2021-08-25 15:26:58 +08:00
api(kotlin("stdlib-jdk8"))
api(kotlin("reflect"))
2021-04-12 13:05:59 +08:00
implementation(project(":ts-core"))
implementation(project(":ts-core:ts-clone"))
implementation(project(":ts-core:ts-log"))
2021-06-22 10:31:33 +08:00
api(group = "org.ktorm", name = "ktorm-core", version = "3.4.1")
2022-01-06 15:29:32 +08:00
compileOnly(group = "com.baomidou", name = "mybatis-plus", version = "3.4.3.4")
compileOnly(group = "com.google.code.gson", name = "gson", version = "2.8.9")
2021-08-25 15:26:58 +08:00
testApi(group = "junit", name = "junit", version = "4.13.2")
2021-04-12 10:47:31 +08:00
}