I have a maven project with quite a few submodules. What I am looking for is a way to get all the .jar files produced by the sub-modules included in the aggregating POM's /target/ directory, so they can be conveniently used afterwards.

  • They don't need to be merged. Preferably not, but if they must be then that is ok.
  • Don't care about dependancies
  • This is primarily for convenience, at this point

A basic version of what I am looking at doing:

Prj1/pom.xml  =>  prj1/target/proj1.jar  (and classes/generated-sources/etc)
Prj2/pom.xml  =>  prj2/target/proj2.jar
Main/pom.xml  =>
                  main/target/proj1.jar
                  main/target/proj2.jar
                  ... classes/generated-sources not needed at all,
                  ... but they could be combined here.  I assume they will be

I've been reading, and using some suggestions from SO as well. So far I haven't found a way to do this, but I'm sure it is there.

edit:

I've given up on getting this to work in a simple way, for all included subprojets. The best answer I have so far is using the dependancy plugin to manually specify (again), each and every sub-module to be included. The idea was to be able to configure the POMs easily for the dozens of clients, simply including the modules necessary and then having it magically stick all the sub-modules's jars in one location. Maven is pretty nice, when you don't do much with it, but the angle bracket tax is incredible when you try.

I still find it odd that such standard-seeming tasks (judging from the questions asked on SO, and what any normal project would do) are so difficult. Is maven3 better?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You could try the maven-dependency-plugin:copy plugin:goal.

You will have to add this to the pom of all submodules that you want to copy.

    <build>
        <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-dependency-plugin</artifactId>
              <executions>
                <execution>             
                  <id>copy-artifact</id>
                  <phase>package</phase>
                  <goals>
                    <goal>copy</goal>
                  </goals>
                  <configuration>
                    <artifactItems>
                        <artifactItem>
                          <groupId>${project.groupId}</groupId>
                          <artifactId>${project.artifactId}</artifactId>
                          <version>${project.version}</version>
                          <type>${project.packaging}</type>
                        </artifactItem>
                    </artifactItems>
                    <outputDirectory>../Main/target/dependencies</outputDirectory>
                  </configuration>
                </execution>
              </executions>
            </plugin>
        </plugins>
    </build>
link|improve this answer
Looks promising. I like that 'copy-artifact' bit :) I'll see if I can't find a way to do it without modifying sub-projects first, since we will have many different poms, I think. – Andrew Backer Nov 28 '11 at 9:11
@AndrewBacker You can also just define this in your aggregating POM (Main/pom.xml). It might very well work. – Brambo Nov 28 '11 at 9:23
This works, but I end up having to specify each dep. manually. I can't use "*" for artifact ID. But it DOES work! – Andrew Backer Nov 29 '11 at 2:57
feedback

One way to achieve this would be to use the moduleSet option of maven assembly plugin.

You could create an assembly descriptor like this (a variation of the example in the link) and use it in assembly plugin declaration in the pom.

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
  <id>bin</id>
  <formats>
    <format>dir</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <moduleSets>
    <moduleSet>
      <useAllReactorProjects>true</useAllReactorProjects> 
      <binaries>
        <outputDirectory>/</outputDirectory>
        <unpack>false</unpack>
      </binaries>
    </moduleSet>
  </moduleSets>
</assembly>
link|improve this answer
I've been trying to get this working. I have it wired up, with help from the linked pages. I get a message complaining about <useAllReactorProjects>, which is odd since I have version 2.2.1 (and 2.2+ is required). Removing that causes complaints about "does not have an artifact with a file.". I never thought I would prefer ms-build, but wow they can make this stuff insanely xml-y and confusing. – Andrew Backer Nov 28 '11 at 10:14
@Andrew Backer. stackoverflow.com/questions/1410141/… seems to indicate it is not all that rosy on this front. – Raghuram Nov 28 '11 at 11:03
Sigh. I'll keep poking experimentally, but this is what frustrates me about going back to java. All the ceremony :) There must be away, since this seems like a common thing to want to do. – Andrew Backer Nov 28 '11 at 17:32
I can't get this to work, not matter what I try. When I get an assembly.xml that works (even if it does nothing), packaging the child projects manually fails since they can't find the referenced assembly.xml. The refer to a <parent>, which is the main POM. Not sure where to go from here. – Andrew Backer Nov 29 '11 at 3:34
feedback

Your Answer

 
or
required, but never shown

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