Files
kestra/jdbc-postgres/build.gradle
2025-03-07 16:44:28 +01:00

21 lines
741 B
Groovy

publishSonatypePublicationPublicationToSonatypeRepository.enabled = false
configurations {
implementation.extendsFrom(micronaut)
}
dependencies {
implementation project(":core")
implementation project(":jdbc")
implementation("io.micronaut.sql:micronaut-jooq")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly('org.flywaydb:flyway-database-postgresql')
testImplementation project(':core').sourceSets.test.output
testImplementation project(':jdbc').sourceSets.test.output
testImplementation project(':storage-local')
testImplementation project(':tests')
testImplementation("io.micronaut.validation:micronaut-validation") // PostgresServiceLivenessCoordinatorTest fail to init without that
}