typelead/gradle-eta

Updating shadow to 2.0.4 causes error

CThuleHansen opened this issue · 1 comments

Hi.

I have tried updating the shadow plugin to 2.0.4 using the fatjar example, but it causes an error when building.
Gradle log is here:
https://scans.gradle.com/s/hwygem3jouuog

So the issue here is that gradle-eta dynamically injects packages into all the gradle configurations and shadow-2.0.4 apparently forces the configuration evaluation first. You can work around this like so:

eta {
  ...
  preInstallDependencies = true
}