I'm running the following versions:
- Jenkins v1.440
- Jenkins Ivy Plugin v1.20
The branch in SVN I'm currently trying to build looks like this:
- branch
- product
- module1
- module1.build (ant build file)
- ivy.xml (module1 ivy descriptor file)
- module2
- module2.build (ant build file)
- ivy.xml (module2ivy descriptor file)
- module3
- module3.build (ant build file)
- ivy.xml (module3ivy descriptor file)
- module1
- product
Currenly I've set up separate Ivy projects in Jenkins to check out each module in SVN, and then run the ant build file directly. This works fine (although I see no module dependencies).
From the plugin doc it looks like I should be setting up one Ivy project in Jenkins, and be getting from "branch\product\" in SVN, instead of "branch\product\module1", "branch\product\module2"?
If that is the case, how do I point this one Ivy project to each build file for each component? Am I supposed to use one build file for all components?
How would this work with multiple SVN locations? Would Ivy be able to find module dependencies in other SVN locations? What if I have multiple branches of the same component? Does Ivy simply search for binary dependencies in ALL Ivy descriptor files in a particular path?
Please let me know if you need any other info to help.