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") { enabled = false } tasks.named("jar") { enabled = true }