简体   繁体   中英

custom gradle plugin circular dependency

I have a custom gradle plugin and a Task named 'taskA', and I want to achieve this task sequence: [assemble] -> taskA -> [assemble].

code:

taskA.dependsOn variant.assemble
taskA.finalizedBy variant.assemble 

Does gradle support to achieve this task sequence? If support, how to do?

In a Gradle build, every task can be executed only once .

So no , your task sequence is not possible .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM