Finally create the project app pom and optionally exclude webapp packaged shared dependencies, for example:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>nl.abz</groupId>
<artifactId>test</artifactId>
<version>v0100</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>nl.abz.test</groupId>
<artifactId>test-app</artifactId>
<packaging>ear</packaging>
<name>Test project App</name>
<dependencies>
<dependency>
<groupId>nl.abz.test</groupId>
<artifactId>test-webapp</artifactId>
<type>war</type>
<version>$
{project.version}
</version>
</dependency>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<defaultJavaBundleDir>APP-INF/lib/</defaultJavaBundleDir>
<modules>
<jarModule>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<excluded>true</excluded>
</jarModule>
<webModule>
<groupId>nl.abz.test</groupId>
<artifactId>test-webapp</artifactId>
<contextRoot>/test-portal</contextRoot>
</webModule>
</modules>
</configuration>
</plugin>
</plugins>
</build>
</project>
Note: the defaultJavaBundleDir is set to APP-INF/lib/ so that we do not need to specify does files in the web-app MANIFEST.MF
Now just create the project parent pom with all shared dependencies, for example:
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>nl.abz</groupId>
<artifactId>test</artifactId>
<packaging>pom</packaging>
<version>v0100</version>
<name>Test project</name>
<dependencies>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>1.1.5</version>
<scope>compile</scope>
<type>jar</type>
</dependency>
<dependency>
<groupId>struts</groupId>
<artifactId>struts</artifactId>
<version>1.2.7</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>