gradle-sample-module-example/build.gradle.kts
2020-11-21 11:26:15 +07:00

24 lines
595 B
Plaintext

plugins {
id("org.springframework.boot")
kotlin("jvm")
kotlin("plugin.spring")
}
dependencies {
implementation(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") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
}
tasks.withType<Test> {
useJUnitPlatform()
}