Files
spring-boot-demo/db/build.gradle.kts
2025-06-03 12:59:28 +07:00

14 lines
379 B
Plaintext

plugins {
alias(libs.plugins.kotlin.jpa)
}
dependencies {
implementation(rootProject.libs.flyway.core)
implementation(rootProject.libs.postgres)
implementation(rootProject.libs.springBoot.starter.jdbc)
testImplementation(libs.testcontainers)
testImplementation(libs.testcontainers.junit.jupiter)
testImplementation(libs.testcontainers.postgresql)
}