mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-25 02:14:38 -05:00
16 lines
561 B
Groovy
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'
|
|
}
|