generated from pricelees/issue-pr-template
29 lines
757 B
Plaintext
29 lines
757 B
Plaintext
import org.gradle.kotlin.dsl.named
|
|
import org.springframework.boot.gradle.tasks.bundling.BootJar
|
|
|
|
plugins {
|
|
id("org.springframework.boot")
|
|
kotlin("plugin.spring")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
implementation("org.springframework.boot:spring-boot-starter-aop")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
|
|
|
|
testImplementation("io.kotest:kotest-runner-junit5:5.9.1")
|
|
testImplementation("io.mockk:mockk:1.14.4")
|
|
|
|
implementation(project(":common:log"))
|
|
implementation(project(":common:utils"))
|
|
implementation(project(":common:types"))
|
|
}
|
|
|
|
tasks.named<BootJar>("bootJar") {
|
|
enabled = false
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
enabled = true
|
|
}
|