mirror of
https://github.com/Dannecron/spring-boot-demo.git
synced 2025-12-25 16:22:35 +03:00
17 lines
444 B
Plaintext
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)
|
|
}
|