gradle-sample-module-example/build.gradle.kts

22 lines
498 B
Plaintext
Raw Permalink Normal View History

2020-11-21 10:44:30 +07:00
plugins {
2020-11-21 10:57:37 +07:00
id("org.springframework.boot")
2020-11-21 10:54:34 +07:00
kotlin("jvm")
2020-11-21 10:57:37 +07:00
kotlin("plugin.spring")
2020-11-21 10:44:30 +07:00
}
2020-11-21 10:54:34 +07:00
dependencies {
2021-02-19 09:15:20 +07:00
api(project(":cubetiq-utils"))
2020-11-21 11:02:01 +07:00
2020-11-21 10:54:34 +07:00
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
2020-11-21 10:44:30 +07:00
2020-11-21 10:54:34 +07:00
implementation(kotlin("reflect"))
implementation(kotlin("stdlib-jdk8"))
2020-11-21 10:44:30 +07:00
2021-02-19 09:15:20 +07:00
testImplementation("org.springframework.boot:spring-boot-starter-test")
2020-11-21 10:44:30 +07:00
}
tasks.withType<Test> {
2020-11-21 10:54:34 +07:00
useJUnitPlatform()
2020-11-21 10:57:37 +07:00
}