I have a maven multi-modul project. The structure looks like:
-modulA (Main project)
- pom.xml
-parentModul (Aggregator)
- pom.xml
- ModulB (Integration Test Project)
-pom.xml
Package definition is like:
<project ...>
<modules>
<module>../modulA</module>
<module>ModulB</module>
</modules>
One of the moduls (ModulA) has the same hierarchy level, The other is in the parent modul.
I try to add a job in Jenkins to build all automatically. (clean package)..
How should I configure the job that parentModul finds the other modules and build the project.??