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.??

link|improve this question

73% accept rate
I'm a bit lost after your comments. "ModuleA" has the same hierarchy level" - the same as which? The pom fragment is from "parentModul", right? If "ModuleA" is checked into SVN separately, why do you compile it with "parentModule"? Finally: what exactly is your error message? – MaDa Oct 29 '11 at 11:15
feedback

2 Answers

Add another aggregator. Place modulA and parentModul in the same directory and one level above them, simply add another pom like this:

aggregator/
|- modulA/
|  |- pom.xml
|- parentModul/
|  |- modulB/
|  |  |- pom.xml
|  |- pom.xml
|- pom.xml

In the aggregator/pom.xml define a modules section as follows:

<project ...>
    <modules>
        <module>modulA</module>
        <module>parentModul</module>
    </modules>
</project>
link|improve this answer
In my case it is not possible to add another parent project. ModulA is already checked in SVN independently from the others. – Kayser Oct 28 '11 at 8:39
see my comment. – Kayser Oct 28 '11 at 8:55
1  
You can always restructure/refactor the directories in SVN. In my opinion, what you have seems incorrectly done. – carlspring Nov 1 '11 at 9:41
feedback

In my case it is not possible to add another parent project. ModulA is already checked in SVN independently from the others.

This indicates that you're probably wrong in putting moduleA in the <modules> section. If moduleA has different life cycle, then you should include it as a dependency.

link|improve this answer
I defined already a dependency from ModulB to ModulA – Kayser Oct 29 '11 at 0:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.