Hi i need to assembly jars from multimodule project in master directory. Let us have a structure like this:

MASTER(pom)
|
+-A3(pom)
| +-A1(jar)
| +-A2(jar)
+-B3(pom)
  +-B1(jar)
  +-B2(jar)

What i want to achieve is to assembly all jar packaged modules in MASTER.

jars/
+- A1.jar
+- A2.jar
+- B1.jar
+- B2.jar

For now i achieved only good resolution on submodules (A3 and B3) by creating pom.xml like:

<modules>
   <module>../A1</module>
   <module>../A2</module>
</modules>
<build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
                    <configuration>
                        <descriptors>
                            <descriptor>src/main/assembly/bin.xml</descriptor>
                        </descriptors>
                    </configuration>
        </plugin>
    </plugins>
 </build>

and assembly descriptor:

<moduleSets>
<moduleSet>
    <includes>
        <include>org.mycompany:A1</include>
        <include>org.mycompany:A2</include>
    </includes>
    <binaries>
        <includeDependencies>false</includeDependencies>
        <outputDirectory>jars/${artifactId}</outputDirectory>
        <unpack>false</unpack>
    </binaries>
</moduleSet>
</moduleSets>

When i do

mvn clean package assembly:assembly

on submodules (A3 or B3) separately they seem to assembly their own submodules fine.

I don't know how to specify assembly descriptor in MASTER. The one similar to A3 and B3 descriptor does not deal with it ([ERROR] you must specify at least one file). I tried several additional tags like includeSubModules... still nothing.

link|improve this question

50% accept rate
Where are your <dependencies>? – kan Feb 1 at 9:38
i'm trying to assembly my modules, not their dependencies – Deo Feb 1 at 9:41
Maybe I am wrong, but <module> just tells to add other poms in the reactor, but it doesn't provide any dependencies. So you cannot refer these modules anywhere, including assembly descriptors until you add dependencies. – kan Feb 1 at 9:43
but if i add A1,A2,B1,B2 as dependencies insted of as modules they will not be built during package phase - just looked for in repository, don't they? – Deo Feb 1 at 9:50
Obviously, if you want and build, and depend, you should add and <module> and <dependency>. – kan Feb 1 at 9:54
show 3 more comments
feedback

2 Answers

<module> just tells to add other poms in the reactor, but it doesn't provide any dependencies. So you cannot refer these modules anywhere, including assembly descriptors until you add dependencies.

If you want and build, and depend, you should add and <module> and <dependency>.

link|improve this answer
i found resolution to my problem, but i can't answer to my own question yet... i will post it in 7 hours ;) – Deo Feb 1 at 10:11
Heh, ok, interesting to know. – kan Feb 1 at 10:20
feedback
up vote 0 down vote accepted

Resolution as promised (Master Assembly Descriptor):

<moduleSets>
 <moduleSet>
    <binaries>
        <includeDependencies>false</includeDependencies>
        <outputDirectory>jars/${artifactId}</outputDirectory>
        <unpack>false</unpack>
    </binaries>
 </moduleSet>
</moduleSets>

as you can see - no pointing to specific modules with <include> like in A3 and B3

<includes>
 <include> 
  (...) 
 </include>
</includes>

this is strange indeed. Nevertheless working.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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