blob: c6b730448753259c068d09e464a3e9c8c65347d4 [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.
-->
<!-- $Rev: 653503 $ $Date: 2008-05-05 22:35:18 +0700 (Mon, 05 May 2008) $ -->
<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>corba-marshal</artifactId>
<version>2.2</version>
</parent>
<artifactId>corba-marshal-ear</artifactId>
<name>Geronimo TestSuite :: CORBA TestSuite :: Marshal EAR</name>
<packaging>ear</packaging>
<description>Example using CORBA to access a stateless EJB</description>
<!--
FIXME: Split this module up... one to build the ear, one to run the tests.
-->
<properties>
<clientLogFile>${basedir}/target/client.log</clientLogFile>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>corba-marshal-ejb</artifactId>
<version>${version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>corba-marshal-client</artifactId>
<version>${version}</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<description>Geronimo Marshal Enterprise Application EAR</description>
<displayName>Geronimo Marshal Enterprise Application EAR</displayName>
<version>5</version>
<modules>
<ejbModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>corba-marshal-ejb</artifactId>
<bundleFileName>corba-marshal-ejb-${version}.jar</bundleFileName>
</ejbModule>
<jarModule>
<groupId>org.apache.geronimo.testsuite</groupId>
<artifactId>corba-marshal-client</artifactId>
<bundleFileName>corba-marshal-client-${version}.jar</bundleFileName>
</jarModule>
</modules>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>it</id>
<build>
<plugins>
<!-- Deploy the ear and invoke the imbedded CORBA app client -->
<plugin>
<groupId>org.apache.geronimo.buildsupport</groupId>
<artifactId>geronimo-maven-plugin</artifactId>
<executions>
<!-- These modules must be running before deploying a CORBA module can be deployed -->
<execution>
<id>start-j2ee-corba-yoko</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start-module</goal>
</goals>
<configuration>
<moduleId>org.apache.geronimo.configs/j2ee-corba-yoko/${version}/car</moduleId>
</configuration>
</execution>
<execution>
<id>openejb-corba-deployer</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start-module</goal>
</goals>
<configuration>
<moduleId>org.apache.geronimo.configs/openejb-corba-deployer/${version}/car</moduleId>
</configuration>
</execution>
<!-- Deploy the CORBA module -->
<execution>
<id>deploy-ear</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy-module</goal>
</goals>
<configuration>
<moduleArchive>${project.build.directory}/${artifactId}-${version}.ear</moduleArchive>
</configuration>
</execution>
<!-- Invoke the CORBA app client -->
<execution>
<phase>pre-integration-test</phase>
<id>run-client</id>
<goals>
<goal>run-client</goal>
</goals>
<configuration>
<moduleId>org.apache.geronimo.testsuite/corba-marshal-client/${version}/car</moduleId>
<!--
<logOutput>true</logOutput>
<logFile>${clientLogFile}</logFile>
-->
</configuration>
</execution>
<!-- Undeploy the CORBA module -->
<execution>
<id>undeploy-ear</id>
<phase>post-integration-test</phase>
<goals>
<goal>undeploy-module</goal>
</goals>
<configuration>
<moduleId>${groupId}/${artifactId}/${version}/car</moduleId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>