I have one more question: In the build scan I get ...
# gradle
k
I have one more question: In the build scan I get a complain about dependency resolution during configuration:
Copy code
Dependencies 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:
Copy code
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?
r
Might be worth trying the gradle slack.