我认为这真的很简单,我从使用gralde for Java开始,我正在尝试部署自己的任务,但是当我在任务中调用另一个任务时,没有任何反应。
我已经尝试过这种方式:
task deployAll(){
build//nothing happen here
moveAllJars //another task made by me...
//...
}
这:
task deployAll(){
doLast {
build//nothing happen here
moveAllJars //another task made by me...
//...
}
}