mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
13 lines
330 B
Groovy
13 lines
330 B
Groovy
configurations {
|
|
implementation.extendsFrom(micronaut)
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
|
|
testImplementation project(':core').sourceSets.test.output
|
|
testImplementation project(':repository-memory')
|
|
testImplementation project(':storage-local')
|
|
testImplementation project(':runner-memory')
|
|
}
|