blob: 9b0eb4497eaa9a3c5721b042aff817191841f419 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
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>jaxb-tests</artifactId>
<version>2.0-M3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jaxb-war</artifactId>
<name>Geronimo TestSuite :: WebServices TestSuite :: JAXB WAR</name>
<packaging>war</packaging>
<description>This project executes testcases for your testsuite</description>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<scope>provided</scope>
</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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>webAppName</name>
<value>${artifactId}-${version}</value>
</property>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.geronimo.genesis.plugins</groupId>
<artifactId>tools-maven-plugin</artifactId>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>${pom.basedir}/src/main/webapp/WEB-INF/web.xml</webXml>
<warSourceIncludes>WEB-INF/lib/${artifactId}-${version}.jar, **/*.jsp, **/*.xml, **/*.class</warSourceIncludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.geronimo.plugins</groupId>
<artifactId>geronimo-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy-wars</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy-module</goal>
</goals>
<configuration>
<moduleArchive>${project.build.directory}/${artifactId}-${version}.war</moduleArchive>
</configuration>
</execution>
<execution>
<id>undeploy-war-as-moduleId</id>
<phase>post-integration-test</phase>
<goals>
<goal>undeploy-module</goal>
</goals>
<configuration>
<moduleId>JEE5/JAXBServlet/1.1/car</moduleId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>