To be more precise, let’s say I have a plug-in wit...
# kobalt
c
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”)