Is there a way to alias a task to satisfy the circ...
# gradle
s
Is there a way to alias a task to satisfy the circular dependency checker? I have a few tasks, but in essence the whole flow I'm trying to code is the following:
Copy code
- clean dynamic service provider source files from A and B
- build 2 subproject jars (we can call them A and B)
- upload jars to external system (responds with hashes of each)
- dynamically create service provider source files inside of A and B
- rebuild jar for A and B
- clean dynamic service provider source files from A and B
- maven publish jars
I run into problems trying to call the dynamicClean task and the jar tasks on both A and B due to trying to call all of them multiple times.