how do i add a task to the build task chain?
# gradle
d
how do i add a task to the build task chain?
a
dumptruckman: you can declare dependencies between tasks
ie if you want some task to be executed before the tests
you declare test.dependsOn(someTask)
d
ah, okay, thanks
what if I want it to come after the last task in the build chain?
a
maybe what you need is a finalizer task
d
awesome, thanks