I am using Ant 1.8
I have several modules in intelliJ IDEA. Each module has build.xml and currently I need to view the build.xml file of this file and run Ant for each module. for example, the success of the assembly of module B depends on whether the assembly of module A was successful.
Now I want to update this process. It will be great if there is an option in which I can write one assembly process that first builds the distribution for module A, and then, when building the distribution for B, it checks if the assembly for module A is successful.
Is it possible to use the current Ant mechanism. I could see something similar in ivy, but I can’t use it in my project.
Please suggest an approach using the main Ant features.
source
share