blob: 775de8a721a0697ad1b802c56939a5c108aeaf32 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-tests</artifactId>
<version>2.0-M3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>manifestcp-ear</artifactId>
<name>Geronimo TestSuite :: Deployment Testsuite :: Manifest Classpath EAR</name>
<packaging>ear</packaging>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-jar</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-war-jar</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-ejb</artifactId>
<version>${version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-war</artifactId>
<version>${version}</version>
<type>war</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.geronimo.plugins</groupId>
<artifactId>testsuite-maven-plugin</artifactId>
<version>${version}</version>
<executions>
<execution>
<id>generate-surefire-xml</id>
<phase>install</phase>
<goals>
<goal>generate-surefire-xml</goal>
</goals>
<!--
Merging the configuration of this plugin with the one it inherits.
Updating the reports in the grandparent directly as we'd have missed the boat for the parent's install phase.
This plugin executes twice in Maven 2.0.4 (http://jira.codehaus.org/browse/MNG-2221)
Maven.2.0.5 will fix it soon.
-->
<configuration>
<grandParent>true</grandParent>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<displayName>Manifest Classpath Itest ear</displayName>
<description>Manifest Classpath Itest ear</description>
<version>1.4</version>
<modules>
<webModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-war</artifactId>
<contextRoot>/manifestcp</contextRoot>
<bundleFileName>web.war</bundleFileName>
</webModule>
<ejbModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>manifestcp-ejb</artifactId>
<bundleFileName>ejb.jar</bundleFileName>
</ejbModule>
</modules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.geronimo.plugins</groupId>
<artifactId>geronimo-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy-ears</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy-module</goal>
</goals>
<configuration>
<moduleArchive>${project.build.directory}/${artifactId}-${version}.ear</moduleArchive>
</configuration>
</execution>
<execution>
<id>undeploy-ear-as-module</id>
<phase>post-integration-test</phase>
<goals>
<goal>undeploy-module</goal>
</goals>
<configuration>
<moduleId>${groupId}/${artifactId}/${version}/ear</moduleId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>