Hello,

I'm having some difficulty achieving the following:

I have a Parent pom, which generates a tar via the assembly plugin.  Under
the Parent I have Child1 that also generates a tar assembly file and a war
dependency that I want included.  I want the tar from child1 and the war to
be included in the Parent tar, How do I achieve this???

I've added my child1 pom as a <module><module> in my parent.  Child1
generates the tar correctly, but Parent generates the tar without the tar
from Child1, but it does include the war.

This is what I have in my Parent assembly (I tried with 

<assembly>
        <id>smp-dist</id>
        <formats>
                <format>tar.gz</format>
        </formats>
        <includeBaseDirectory>true</includeBaseDirectory>
        <moduleSets>
           <moduleSet>
             <includeSubModules>true</includeSubModules>
             <includes>
                <include>*:child1</include>
             </includes>
           </moduleSet>
        </moduleSets>
        <dependencySets>
                <dependencySet>
                        <useProjectArtifact>false</useProjectArtifact>
                        <includes>
                                <include>*:war</include>
                        </includes>
                </dependencySet>
        </dependencySets>
</assembly>

I also tried by adding:
             <includeSubModules>true</includeSubModules>
             <includes>
                <include>*:child1</include>
             </includes>
             <binaries>
                <attachmentClassifier>child1</attachmentClassifier>
             </binaries>



Can anyone help???

Sonia
-- 
View this message in context: 
http://www.nabble.com/multimodule-assembly-tp21361289p21361289.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to