mirror of
https://github.com/Dannecron/spring-boot-demo.git
synced 2025-12-26 00:32:34 +03:00
14 lines
379 B
Plaintext
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)
|
|
}
|