subant

running specific target in different ant scripts in different directories

只愿长相守 提交于 2019-11-29 17:05:15
We have a large amount of apps. They all have a build.xml file located in the projects base directory. I am trying to create an ant script that will go through and call a specific target on each of the build.xml files in all the projects. Here are the issues: Some of the projects are in deeper directories than others. Only some of the projects need to be built at a time. I was trying to use subant + antfile and defining a CSV of file paths in a properties file, but this did not work. Below is what i have and the error i am getting. If there is a better way to do this or you know what my

running specific target in different ant scripts in different directories

余生颓废 提交于 2019-11-28 10:28:40
问题 We have a large amount of apps. They all have a build.xml file located in the projects base directory. I am trying to create an ant script that will go through and call a specific target on each of the build.xml files in all the projects. Here are the issues: Some of the projects are in deeper directories than others. Only some of the projects need to be built at a time. I was trying to use subant + antfile and defining a CSV of file paths in a properties file, but this did not work. Below is