| <?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>saaj-tests</artifactId> |
| <version>2.1.7</version> |
| </parent> |
| |
| <artifactId>saaj-client</artifactId> |
| <name>Geronimo TestSuite :: WebServices TestSuite :: SAAJ Client</name> |
| <packaging>jar</packaging> |
| |
| <description>This project executes testcases for your testsuite</description> |
| |
| <properties> |
| <clientLogFile>${basedir}/target/client.log</clientLogFile> |
| </properties> |
| |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-saaj_1.3_spec</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <profiles> |
| <profile> |
| <id>child</id> |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <configuration> |
| <archive> |
| <manifest> |
| <mainClass>org.apache.geronimo.test.SAAJClient</mainClass> |
| </manifest> |
| </archive> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <systemProperties> |
| <property> |
| <name>clientLogFile</name> |
| <value>${clientLogFile}</value> |
| </property> |
| </systemProperties> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.geronimo.buildsupport</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. |
| --> |
| <configuration> |
| <grandParent>true</grandParent> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.geronimo.buildsupport</groupId> |
| <artifactId>geronimo-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>deploy-client</id> |
| <phase>pre-integration-test</phase> |
| <goals> |
| <goal>deploy-module</goal> |
| </goals> |
| <configuration> |
| <moduleArchive>${project.build.directory}/${artifactId}-${version}.jar</moduleArchive> |
| </configuration> |
| </execution> |
| |
| <execution> |
| <phase>pre-integration-test</phase> |
| <id>run-client</id> |
| <goals> |
| <goal>run-client</goal> |
| </goals> |
| <configuration> |
| <moduleId>JEE5/SAAJClient/1.1/car</moduleId> |
| <logOutput>true</logOutput> |
| <logFile>${clientLogFile}</logFile> |
| </configuration> |
| </execution> |
| |
| <execution> |
| <id>undeploy-client-as-moduleId</id> |
| <phase>post-integration-test</phase> |
| <goals> |
| <goal>undeploy-module</goal> |
| </goals> |
| <configuration> |
| <moduleId>JEE5/SAAJClientServer/1.1/car</moduleId> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </profile> |
| </profiles> |
| </project> |
| |