mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 09:50:29 -05:00
19 lines
541 B
Groovy
19 lines
541 B
Groovy
configurations {
|
|
implementation.extendsFrom(micronaut)
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
implementation project(":jdbc")
|
|
implementation project(":executor")
|
|
implementation project(":scheduler")
|
|
|
|
implementation("io.micronaut.sql:micronaut-jooq")
|
|
runtimeOnly("com.h2database:h2")
|
|
|
|
testImplementation project(':core').sourceSets.test.output
|
|
testImplementation project(':jdbc').sourceSets.test.output
|
|
testImplementation project(':storage-local')
|
|
testImplementation project(':tests')
|
|
}
|