<@U0C2CG716>: For this reason: Cédric Beust To be ...
# kobalt
c
@dalexander: For this reason: Cédric Beust To be more precise, let’s say I have a plug-in with a task that must run after
compile
. Easy:
myTask(dependsOn = "compile")
. Now what if I want my task to run before
compile
? I can’t say
compile.runBefore(myTask)
since I don’t control
compile
, so I need to do this from my task:
myTask(reverseDependsOn = "compile")
[