mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-23 21:04:39 -05:00
19 lines
666 B
Groovy
19 lines
666 B
Groovy
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
|
|
}
|