generated from pricelees/issue-pr-template
28 lines
760 B
Plaintext
28 lines
760 B
Plaintext
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>("bootJar") {
|
|
enabled = false
|
|
}
|
|
|
|
tasks.named<Jar>("jar") {
|
|
enabled = true
|
|
} |