mirror of
https://github.com/tursom/TursomServer.git
synced 2026-08-22 11:13:30 +08:00
20 lines
514 B
Kotlin
20 lines
514 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish`
|
|
id("ts-gradle")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":"))
|
|
implementation(project(":ts-core"))
|
|
implementation(project(":ts-core:ts-clone"))
|
|
compileOnly("org.mongodb:mongo-java-driver:3.12.10")
|
|
compileOnly(group = "org.springframework.data", name = "spring-data-mongodb", version = "3.3.0")
|
|
testApi(group = "junit", name = "junit", version = "4.13.2")
|
|
testImplementation(group = "org.springframework.data", name = "spring-data-mongodb", version = "3.3.0")
|
|
}
|
|
|
|
|
|
|
|
|