<?xml version="1.0"?>
<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>m2eclipse.ear-test</groupId>
  <artifactId>earbuild</artifactId>
  <packaging>ear</packaging>
  <version>1</version>
  <name>The EAR containing the WAR</name>
  <dependencies>
  	<dependency>
      <groupId>m2eclipse.ear-test</groupId>
      <artifactId>warmodule</artifactId>
      <version>1</version>
      <type>war</type>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-ear-plugin</artifactId>
        <configuration>
          <modules>
            <webModule>
              <groupId>m2eclipse.ear-test</groupId>
              <artifactId>warmodule</artifactId>
              <contextRoot>myear</contextRoot>
            </webModule>
          </modules>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>


