Files
kestra/jdbc-postgres/build.gradle
2022-08-23 21:44:10 +02:00

16 lines
561 B
Groovy

publishSonatypePublicationPublicationToSonatypeRepository.enabled = false
dependencies {
implementation project(":core")
implementation project(":jdbc")
implementation("io.micronaut.sql:micronaut-jooq")
runtimeOnly("org.postgresql:postgresql:42.4.2")
testImplementation project(':core').sourceSets.test.output
testImplementation project(':jdbc').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation project(':storage-local')
testImplementation 'org.mockito:mockito-junit-jupiter:4.7.0'
}