22 lines
498 B
Plaintext
22 lines
498 B
Plaintext
plugins {
|
|
id("org.springframework.boot")
|
|
|
|
kotlin("jvm")
|
|
kotlin("plugin.spring")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":cubetiq-utils"))
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
implementation(kotlin("reflect"))
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
} |