import org.gradle.kotlin.dsl.named import org.springframework.boot.gradle.tasks.bundling.BootJar plugins { id("org.springframework.boot") kotlin("plugin.spring") } dependencies { api("org.springframework.boot:spring-boot-starter-web") api("org.springframework.boot:spring-boot-starter-aop") api("com.fasterxml.jackson.module:jackson-module-kotlin") api(project(":common:log")) api(project(":common:utils")) api(project(":common:types")) testImplementation("io.kotest:kotest-runner-junit5:5.9.1") testImplementation("io.mockk:mockk:1.14.4") } tasks.named("bootJar") { enabled = false } tasks.named("jar") { enabled = true }