Files
kestra/jdbc-postgres/build.gradle
2022-06-17 10:43:52 +02:00

15 lines
505 B
Groovy

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