I have several projects, most of them has "test" target, which run tests and store results in property 'test.faulire'.
All projects located in same directory:
- big_project / someproject1
- big_project / someproject1 / build.xml
- big_project / someproject2
- big_project / someproject2 / build.xml
So, in root of 'big_project' i want to create one build.xml for:
Running test on all projects
If all test ok, run "deploy" task on each project. It'll be very well if I could pass some deployment parameters to each project.
How would you realize this scenario ?