mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
15 lines
505 B
Groovy
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'
|
|
}
|