Files
spring-boot-demo/db/build.gradle.kts
Savosin Denis d7c051746d move repositories to separate db package
replace jacoco with kover
2025-03-28 14:38:57 +07:00

17 lines
444 B
Plaintext

plugins {
alias(libs.plugins.kotlin.jpa)
}
group = "com.github.dannecron.demo"
version = "single-version"
dependencies {
implementation(rootProject.libs.flyway.core)
implementation(rootProject.libs.postgres)
implementation(rootProject.libs.spring.boot.starter.jdbc)
testImplementation(libs.testcontainers)
testImplementation(libs.testcontainers.junit.jupiter)
testImplementation(libs.testcontainers.postgresql)
}