- Apply MPEAR-14

- Added to the plugin tests a check to make sure the ear includes
  the jars marked by ear.bundle and ear.module and that ear.module generates
  a java module in the generated application.xml
- Updated documentation


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114709 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2004-02-20 04:49:07 +00:00
parent 067127eb43
commit 8201a36b18
7 changed files with 83 additions and 43 deletions

View File

@@ -40,7 +40,24 @@
<version>1.0.3</version>
<url>http://jakarta.apache.org/commons/logging.html</url>
<properties>
<ear.bundle.jar>true</ear.bundle.jar>
<ear.bundle>true</ear.bundle>
</properties>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>2.1</version>
<url>http://jakarta.apache.org/commons/collections/</url>
<properties>
<ear.module>true</ear.module>
</properties>
</dependency>
<dependency>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-tags-xml</artifactId>
<version>20030211.142705</version>
<properties>
<classloader>root.maven</classloader>
</properties>
</dependency>
</dependencies>
@@ -49,16 +66,5 @@
<sourceDirectory>src</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
<!-- Resources that are packaged up inside the JAR file -->
<resources>
<!--includes>
<include>*.xsd</include>
<include>log4j.properties</include>
</includes-->
</resources>
<!-- Integration unit test cases -->
<integrationUnitTest/>
<jars></jars>
</build>
</project>