I have an assembly executed in my top level project (the parent) I extract all the sources to allow the client to compile himself the project.
The problem is that all is extracted except the parent project it self (as described here) Of course this is not really a problem beacause it does not contains sources but it is needed to compile the project from this sources exctraction.
So how can I include the parent in his own assembly?
thank you
pom.xmlin the assembly, am I understanding correctly? – user944849 Apr 17 '12 at 13:45-Xon the cmd line. The assembly output includes[WARNING] The following patterns were never triggered in this artifact inclusion filter: o 'com.company:theParent'. Looks like Maven is cross-referencing the<modules>list from the parent with the module includes. It doesn't find the parent and ignores it. The docs discuss using a separate child project just for building assemblies in multimodule builds, don't know if that helps or not. I would probably just usefileSetorfileif it were me. – user944849 Apr 17 '12 at 17:15