I am building my project with gradle, with the following build.gradle file:
project(\'a\'){ apply plugin: \'java\' apply plugin: \'eclipse\' apply pl
What you need is finalizedBy, see the following script:
finalizedBy
apply plugin: 'java' task finalize { doLast { println('finally!') } } build.finalizedBy(finalize)
Here are the docs.