21 lines
568 B
Plaintext
21 lines
568 B
Plaintext
|
plugins {
|
||
|
id("org.springframework.boot")
|
||
|
id("io.spring.dependency-management")
|
||
|
kotlin("jvm")
|
||
|
kotlin("plugin.spring")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":lib"))
|
||
|
|
||
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
||
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
||
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
||
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
||
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
||
|
}
|
||
|
|
||
|
tasks.withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|