import org.gradle.kotlin.dsl.named import org.springframework.boot.gradle.tasks.bundling.BootJar plugins { id("org.springframework.boot") kotlin("plugin.spring") kotlin("plugin.jpa") } dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("com.github.f4b6a3:tsid-creator:5.2.6") testRuntimeOnly("com.h2database:h2") testImplementation("org.springframework.boot:spring-boot-starter-test") testImplementation("io.kotest:kotest-runner-junit5:5.9.1") testImplementation("io.kotest.extensions:kotest-extensions-spring:1.3.0") implementation(project(":common:utils")) } tasks.named("bootJar") { enabled = false } tasks.named("jar") { enabled = true }