mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 09:50:29 -05:00
21 lines
641 B
Groovy
21 lines
641 B
Groovy
configurations {
|
|
implementation.extendsFrom(micronaut)
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor project(':processor')
|
|
implementation project(":core")
|
|
|
|
implementation group: 'dev.failsafe', name: 'failsafe'
|
|
|
|
// test
|
|
testAnnotationProcessor project(':processor')
|
|
testImplementation project(':core').sourceSets.test.output
|
|
testImplementation project(':storage-local')
|
|
|
|
testImplementation project(':tests')
|
|
testImplementation project(':jdbc')
|
|
testImplementation project(':jdbc').sourceSets.test.output
|
|
testImplementation project(':jdbc-h2')
|
|
testImplementation("io.micronaut.sql:micronaut-jooq")
|
|
} |