Building a Maven Complex Release Artifact: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 9: Line 9:
=Don't Follow your Intuition=
=Don't Follow your Intuition=


An intuitive approach to assemble the release artifact of a multi-module project into one release file would be to build the final assembly in the [[Multi-Module_Maven_Projects#The_Parent_POM|project root]]. However, this approach has several drawbacks:  
An intuitive approach to assemble the release artifact of a multi-module project into one release file would be to build the final assembly in the [[Multi-Module_Maven_Projects#The_Parent_POM|project root]]. However, this approach does not work well in practice. Among the problems:
 
==Root Module Builds First==
 
... so if the "final" assembly depends on the artifacts of the children modules, we'll get into a deadlock.


==Repeated Execution==
==Repeated Execution==
Line 47: Line 51:


then the root module will create its assembly based on assembly.xml (1) and module-1 will create its assembly based on assembly.xml (2).
then the root module will create its assembly based on assembly.xml (1) and module-1 will create its assembly based on assembly.xml (2).
==Root Module Builds First==
... so if the "final" assembly depends on the artifacts of the children modules, we'll get into a deadlock.


=Recommended Approach=
=Recommended Approach=

Revision as of 17:15, 7 November 2016

Internal

Overview

This article describes the procedure of configuring Maven to build one complex release artifact, containing multiple individual artifacts, possibly produced by multiple modules, as well as arbitrary files from the project, dependencies, and so on, or otherwise what is known to Maven as an assembly.

Don't Follow your Intuition

An intuitive approach to assemble the release artifact of a multi-module project into one release file would be to build the final assembly in the project root. However, this approach does not work well in practice. Among the problems:

Root Module Builds First

... so if the "final" assembly depends on the artifacts of the children modules, we'll get into a deadlock.

Repeated Execution

Because the assembly plug-in is specified in the parent POM, the plug-in will be executed for each module (including root) at the specified phase, usually "package". When executing, the module will try to resolve the specified descriptor relative to the module root, so if we have the following declaration and layout:

<project>
   </build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptors>
                        <descriptor>assembly.xml</descriptor>
                    </descriptors>
                </configuration>
                ...
            </plugin>
        </plugins>
    </build>
</project>
<pre>

<pre>
  .
  +-- pom.xml
  |
  +-- assembly.xml   (1)
  |
  +-- module-1
       |
       +-- pom.xml
       |
       +-- assembly.xml (2)

then the root module will create its assembly based on assembly.xml (1) and module-1 will create its assembly based on assembly.xml (2).

Recommended Approach

Create a separated module called "distribution", dedicated to building the final assembly, and make it a dependent of all other modules. Assuming that the root module is 'maven-root', "other" modules are 'mod1', then the "distribution" pom.xml should look similar to (with its private assembly.xml file in the module root):

{{{ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <name>assembly</name>
   <parent>
       <groupId>org.novaordis.playground</groupId>
       <artifactId>maven-root</artifactId>
       <version>1.0.0</version>
   </parent>
   <groupId>org.novaordis.playground</groupId>
   <artifactId>distribution</artifactId>
   <packaging>pom</packaging>
   <build>
       <plugins>
           <plugin>
               <artifactId>maven-assembly-plugin</artifactId>
               <configuration>
                   <descriptors>
                       <descriptor>assembly.xml</descriptor>
                   </descriptors>
               </configuration>
               <executions>
                   <execution>
                       <id>make-assembly</id>
                       <phase>package</phase>
                       <goals>
                           <goal>single</goal>
                       </goals>
                   </execution>
               </executions>
           </plugin>
       </plugins>
   </build>
   <dependencies>
       <dependency>
           <groupId>org.novaordis.playground</groupId>
           <artifactId>mod1</artifactId>
           <version>1.0.0</version>
       </dependency>
   </dependencies>

</project> }}}

Don't forget to declare the "distribution" module in root.

!!!Example of a multi-module assembly file

{{{ }}}

__Referenced by:__\\ [{INSERT com.ecyrd.jspwiki.plugin.ReferringPagesPlugin WHERE max=20, maxwidth=50}]