blob: 49a1ebc31b8e11ce703b141539de7e3fac47efe7 [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 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>
<parent>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>jpa-tests</artifactId>
<version>2.0-M3</version>
</parent>
<artifactId>jpa-ear</artifactId>
<name>Geronimo TestSuite :: Enterprise Testsuite :: JPA - EAR</name>
<packaging>ear</packaging>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>jpa-ejb</artifactId>
<version>${version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>jpa-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>jpa Itest ear</displayName>
<description>jpa Itest ear</description>
<version>1.4</version>
<modules>
<webModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>jpa-war</artifactId>
<contextRoot>/jpa</contextRoot>
<bundleFileName>web.war</bundleFileName>
</webModule>
<ejbModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>jpa-ejb</artifactId>
<bundleFileName>ejb.jar</bundleFileName>
</ejbModule>
</modules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>${project.build.directory}/test-classes/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<!-- "ear" packaging doesn't compile test classes -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- "ear" packaging doesn't process test resources -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>testResources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.geronimo.plugins</groupId>
<artifactId>selenium-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.geronimo.plugins</groupId>
<artifactId>geronimo-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy</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</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>