Kuba Petržílka
12/04/2020, 10:31 PMDependencies were resolved during project configuration
Dependency resolution during project configuration may reduce build speed by resolving dependencies unnecessarily.
:frontend-war:additionalJsLibs
even though I turned the task configuration to configuration avoidance api:
tasks {
...
named("war", War::class) {
additionalJsLibs.files.forEach { from(zipTree(it)) { into("script") } }
}
...
}
The problem is obviously the iteration over the additionalJsLibs
but what is the right way to avoid that being done in the configuration phase?Rob Elliot
12/05/2020, 7:15 AM