This message was deleted.
# community-support
s
This message was deleted.
v
Maybe the configuration is additive? Not sure, I'm on mobile. Btw. the
.configure
is redundant, but on the other hand
withType() {}
breaks task configuration avoidance, better use
withType().configureEach {}
. :-)
c
if I use configureEach it doesn't return the task for me to depend on
which I think I recall a problem with not doing
jacoco doesn't run without the `dependsOn(verification)``
I'm open to task avoidence, but not sure of a better way
since I still need that dependsOn
v
Split it
verification = withType() verification.configureEach bla { dependsOn... }
👍 1
From a quick look my suspicion was correct. Limits are additive, you cannot remove a limit once added, you can just add additional limits.
😢 1
c
Yeah which is why I'm looking at making my plug-in parameterizable over the default. I'm not exactly sure I understand that completely when it's a build source kotlin plugin. Started another thread for that.
Although to be honest this might only be a problem because I have a tiny amount of code. If I actually get some real code in the code base maybe I won't have that little...