Author: thomas.diesler(a)jboss.com
Date: 2008-04-19 06:58:40 -0400 (Sat, 19 Apr 2008)
New Revision: 6544
Added:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/
stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/pom.xml
stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/src/
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-jars-jaxws.xml
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-samples-jaxws.xml
Removed:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/ant/
Modified:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml
Log:
use test modules
Added: stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/pom.xml
(rev 0)
+++ stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/pom.xml 2008-04-19
10:58:40 UTC (rev 6544)
@@ -0,0 +1,141 @@
+<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>
+
+ <name>JBoss Web Services - Stack CXF Testsuite</name>
+ <artifactId>jbossws-cxf-tests</artifactId>
+ <packaging>jar</packaging>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-cxf-testsuite</artifactId>
+ <version>3.0.2-SNAPSHOT</version>
+ </parent>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>test-compile</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <property name="tests.output.dir"
value="${project.build.directory}"/>
+ <ant antfile="src/ant/cxf-jars-jaxws.xml"
target="build-jars-jaxws"/>
+ <ant antfile="src/ant/cxf-samples-jaxws.xml"
target="build-samples-jaxws"/>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <argLine>${surefire.jvm.args}</argLine>
+ <!--argLine>${surefire.jdpw.args}</argLine-->
+ <systemProperties>
+ <property>
+ <name>java.naming.provider.url</name>
+ <value>jnp://${jboss.bind.address}:1099</value>
+ </property>
+ <property>
+ <name>java.util.logging.manager</name>
+ <value>org.jboss.wsf.common.logging.JDKLogManager</value>
+ </property>
+ <property>
+ <name>jbossws.integration.target</name>
+ <value>${jbossws.integration.target}</value>
+ </property>
+ <property>
+ <name>jbossws.test.log</name>
+ <value>${project.build.directory}</value>
+ </property>
+ <property>
+ <name>test.archive.directory</name>
+ <value>${project.build.directory}/test-libs</value>
+ </property>
+ <property>
+ <name>test.resources.directory</name>
+ <value>${project.build.directory}/test-resources</value>
+ </property>
+ </systemProperties>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <!--
+ mvn -Denv=jboss422 test
+ -->
+ <profile>
+ <id>jboss422-profile</id>
+ <activation>
+ <property>
+ <name>env</name>
+ <value>jboss422</value>
+ </property>
+ </activation>
+ <properties>
+ <jboss.version>4.2.2.GA</jboss.version>
+ <jbossws.integration.target>jboss422</jbossws.integration.target>
+ <jboss.remoting.version>2.2.2.SP1</jboss.remoting.version>
+ <jboss.serialization.version>1.0.3.GA</jboss.serialization.version>
+ </properties>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.client</groupId>
+ <artifactId>jbossall-client</artifactId>
+ <version>${jboss.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-cxf-client</artifactId>
+ <version>${version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-framework</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-jboss42</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-spi</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <!-- [JBWS-2097] Unlock WS-ReliableMessaging in all stacks -->
+ <exclude>org/jboss/test/ws/jaxws/samples/wsrm/**</exclude>
+ <exclude>org/jboss/test/ws/jaxws/cxf/wsrm/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>
Property changes on:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/pom.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Copied: stack/cxf/branches/tdiesler/trunk/modules/testsuite/cxf-tests/src (from rev 6542,
stack/cxf/branches/tdiesler/trunk/modules/testsuite/src)
Added:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-jars-jaxws.xml
===================================================================
---
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-jars-jaxws.xml
(rev 0)
+++
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-jars-jaxws.xml 2008-04-19
10:58:40 UTC (rev 6544)
@@ -0,0 +1,560 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ============================================================ -->
+<!-- JBoss, the OpenSource J2EE webOS -->
+<!-- Distributable under LGPL license. -->
+<!-- See terms of license at
http://www.gnu.org. -->
+<!-- ============================================================ -->
+
+<!-- $Id$ -->
+
+<project>
+
+ <description>JBossWS test archive builder</description>
+
+ <!-- ================================================================== -->
+ <!-- Building -->
+ <!-- ================================================================== -->
+
+ <target name="build-jars-jaxws" description="Build the
deployments.">
+
+ <mkdir dir="${tests.output.dir}/test-libs"/>
+
+ <!-- jaxws-anonymous -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-anonymous.war"
webxml="${tests.output.dir}/test-resources/jaxws/anonymous/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/anonymous/Anonymous.class"/>
+ <include
name="org/jboss/test/ws/jaxws/anonymous/AnonymousRequest.class"/>
+ <include
name="org/jboss/test/ws/jaxws/anonymous/AnonymousResponse.class"/>
+ <include
name="org/jboss/test/ws/jaxws/anonymous/AnonymousImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-binding -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-binding.war"
webxml="${tests.output.dir}/test-resources/jaxws/binding/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/binding/SOAPEndpointBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/binding/SOAPEndpoint.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-classloading-service -->
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-classloading-service.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/smoke/tools/service/HelloWorld.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-classloading-types -->
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-classloading-types.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/smoke/tools/service/Message.class"/>
+ <include
name="org/jboss/test/ws/jaxws/smoke/tools/service/Echo.class"/>
+ <include
name="org/jboss/test/ws/jaxws/smoke/tools/service/EchoResponse.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-complex -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-complex.war"
webxml="${tests.output.dir}/test-resources/jaxws/complex/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/complex/*.class"/>
+ <include name="org/jboss/test/ws/jaxws/complex/extra/*.class"/>
+ <include name="org/jboss/test/ws/jaxws/complex/types/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/complex/*TestCase.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-endpoint-servlet -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-endpoint-servlet.war"
webxml="${tests.output.dir}/test-resources/jaxws/endpoint/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/endpoint/EndpointServlet.class"/>
+ <include
name="org/jboss/test/ws/jaxws/endpoint/EndpointBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/endpoint/EndpointInterface.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/endpoint/WEB-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-handlerscope -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-handlerscope.war"
webxml="${tests.output.dir}/test-resources/jaxws/handlerscope/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/handlerscope/SOAPEndpointBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/handlerscope/SOAPEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/handlerscope/ProtocolHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/handlerscope/jaxws-server-handlers.xml"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-holder -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-holder.war"
webxml="${tests.output.dir}/test-resources/jaxws/holder/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/holder/HolderServiceImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws860 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws860.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws860/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws860/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws860/*TestCase.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws860/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-jbws944 -->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws944.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws944/EJB3Bean01.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws944/EJB3RemoteInterface.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws944/EJB3RemoteBusinessInterface.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws944/EJB3RemoteHome.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws981 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws981.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws981/EJB3Bean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws981/EJB3RemoteInterface.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws981/EndpointInterface.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1178 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1178.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1178/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1178/TestEndpointImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1190 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1190.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1190/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1190/ConfidentialEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1190/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1190/TestEndpointImpl*.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1190/JBWS1190Exception.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1283 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1283.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1283/*.*"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1357 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1357.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1357/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1357/JBWS1357.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1357/JBWS1357Impl.class"/>
+ </classes>
+ <fileset dir="${tests.output.dir}/test-resources/jaxws/jbws1357">
+ <include name="hello.jsp"/>
+ </fileset>
+ </war>
+
+ <!-- jaxws-jbws1422 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1422.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1422/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1422/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1446 -->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1446.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1446/EJB3Bean.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1505 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1505.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1505/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1505/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1529 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1529.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1529/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1529/UserException.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1529/JBWS1529.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1529/JBWS1529Impl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1556 -->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1556.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1556/EJB3Bean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1556/UserType.class"/>
+ </fileset>
+ </jar>
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1556.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1556.jar"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1556/META-INF">
+ <include name="application.xml"/>
+ <include name="jboss-app.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1566-->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1566.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1566/**/*.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1581 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1581.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1581/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1581/EndpointBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1581/EndpointInterface.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1581/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1581.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1581.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1581/META-INF">
+ <include name="application.xml"/>
+ <include name="jboss-app.xml"/>
+ </metainf>
+ </jar>
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1581.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1581/EJB3Bean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1581/EJB3Remote.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1581/EndpointInterface.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1581/META-INF">
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1611 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1611.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1611/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1611/PingEndpointImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1694 -->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1694.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1694/**/*.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1702 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1702.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1702/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1702/**/*.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1702/WEB-INF"/>
+ </war>
+
+ <!-- jaxws-jbws1733 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1733.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1733/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1733/JBWS1733.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1762 -->
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1762/services/EJB3Bean.class"/>
+ </fileset>
+ </jar>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.jar"/>
+ <unjar src="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.jar"
dest="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.jar"/>
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1762/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1762/services/POJOBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1762/services/POJOIface.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1762/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.war"/>
+ <unwar src="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.war"
dest="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.war"/>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.sar">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1762-packaged.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1762/META-INF">
+ <include name="jboss-service.xml"/>
+ </metainf>
+ </jar>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.sar"/>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.sar/META-INF"/>
+ <copy
file="${tests.output.dir}/test-resources/jaxws/jbws1762/META-INF/jboss-service.xml"
todir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.sar/META-INF"/>
+ <unwar src="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.war"
dest="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.sar/jaxws-jbws1762-exploded.war"/>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1762-packaged.jar"/>
+ <include name="jaxws-jbws1762-packaged.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1762/META-INF/packaged">
+ <include name="application.xml"/>
+ </metainf>
+ </jar>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.ear"/>
+ <mkdir
dir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.ear/META-INF"/>
+ <copy
file="${tests.output.dir}/test-resources/jaxws/jbws1762/META-INF/exploded/application.xml"
todir="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.ear/META-INF"/>
+ <unwar src="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.war"
dest="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.ear/jaxws-jbws1762-exploded.war"/>
+ <unjar src="${tests.output.dir}/test-libs/jaxws-jbws1762-packaged.jar"
dest="${tests.output.dir}/test-libs/jaxws-jbws1762-exploded.ear/jaxws-jbws1762-exploded.jar"/>
+
+ <!-- jaxws-jbws1797 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1797.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1797/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1797/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1797/*TestCase.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-jbws1798 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1798.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1798/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1798/**/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1798/*TestCase.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1798/WEB-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-jbws1799 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1799.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1799/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1799/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1807 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1807.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1807/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1807/ProviderImpl.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1807/WEB-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-jbws1813 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1813.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1813/EndpointImpl.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1813/META-INF">
+ <include name="jboss.xml"/>
+ </metainf>
+ </jar>
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1813.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1813.jar"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1813/META-INF">
+ <include name="application.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1815 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1815.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1815/ProviderImpl.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1815/META-INF">
+ <include name="wsdl/my-service.wsdl"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1822 -->
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1822-shared.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/shared/TestBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/shared/TestBeanIface.class"/>
+ </fileset>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1822-one-ejb3-inside.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/webservice/EJB3Bean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/webservice/EJB3RemoteIface.class"/>
+ </fileset>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-jbws1822-two-ejb3-inside.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/shared/TestBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/shared/TestBeanIface.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/webservice/EJB3Bean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/jbws1822/webservice/EJB3RemoteIface.class"/>
+ </fileset>
+ </jar>
+ <ear
appxml="${tests.output.dir}/test-resources/jaxws/jbws1822/two-ejb-modules/META-INF/application.xml"
+
earfile="${tests.output.dir}/test-libs/jaxws-jbws1822-two-ejb-modules.ear">
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1822/two-ejb-modules/META-INF">
+ <include name="jboss-app.xml"/><!-- this fixes the problem
-->
+ </metainf>
+ <fileset
file="${tests.output.dir}/test-libs/jaxws-jbws1822-shared.jar"/>
+ <fileset
file="${tests.output.dir}/test-libs/jaxws-jbws1822-one-ejb3-inside.jar"/>
+ </ear>
+ <ear
appxml="${tests.output.dir}/test-resources/jaxws/jbws1822/one-ejb-module/META-INF/application.xml"
+
earfile="${tests.output.dir}/test-libs/jaxws-jbws1822-one-ejb-module.ear">
+ <fileset
file="${tests.output.dir}/test-libs/jaxws-jbws1822-two-ejb3-inside.jar"/>
+ </ear>
+
+ <!-- jaxws-jbws1840 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1840.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1840/SecureEndpointImpl.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1841 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1841.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1841/*.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1841/META-INF">
+ <include name="wsdl/*"/>
+ <include name="ejb-jar.xml"/>
+ <include name="jboss.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1843 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws1843.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1843/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1843/**/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1843/*TestCase.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1843/WEB-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-jbws1845 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1845.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1845/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1845/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1854 -->
+ <war destfile="${tests.output.dir}/test-libs/jaxws-jbws1854.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws1854/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/jbws1854/TestEndpointImpl.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws1854/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1854.sar">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-jbws1854.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1854/META-INF">
+ <include name="jboss-service.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws1872 -->
+ <jar jarfile="${tests.output.dir}/test-libs/jaxws-jbws1872.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1872/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1872/*TestCase.class"/>
+ <exclude name="org/jboss/test/ws/jaxws/jbws1872/Client*.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1904 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1904.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1904/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1904/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws1969 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws1969.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws1969/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws1969/*TestCase.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/jbws1969/META-INF">
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-jbws2000 -->
+ <jar destfile="${tests.output.dir}/test-libs/jaxws-jbws2000.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws2000/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws2000/*TestCase.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-jbws2009 -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-jbws2009.war"
webxml="${tests.output.dir}/test-resources/jaxws/jbws2009/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include name="org/jboss/test/ws/jaxws/jbws2009/**/*.class"/>
+ <exclude
name="org/jboss/test/ws/jaxws/jbws2009/*TestCase.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/jbws2009/WEB-INF">
+ <include name="wsdl/**"/>
+ <include name="schema/**"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws namespace -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-namespace.war"
webxml="${tests.output.dir}/test-resources/jaxws/namespace/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/namespace/EndpointBean.class"/>
+ <include
name="org/jboss/test/ws/jaxws/namespace/EndpointInterface.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/namespace/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-webfault -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-webfault.war"
webxml="${tests.output.dir}/test-resources/jaxws/webfault/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/webfault/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/webfault/TestEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/webfault/CustomException.class"/>
+ <include
name="org/jboss/test/ws/jaxws/webfault/SimpleException.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-wrapped-accessor -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-wrapped-accessor.war"
webxml="${tests.output.dir}/test-resources/jaxws/wrapped/accessor/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/wrapped/accessor/Accessor.class"/>
+ <include
name="org/jboss/test/ws/jaxws/wrapped/accessor/AccessorImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/wrapped/accessor/jaxws/*"/>
+ </classes>
+ </war>
+
+ <!-- Please add alphabetically -->
+
+ </target>
+
+</project>
Property changes on:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-jars-jaxws.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-samples-jaxws.xml
===================================================================
---
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-samples-jaxws.xml
(rev 0)
+++
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-samples-jaxws.xml 2008-04-19
10:58:40 UTC (rev 6544)
@@ -0,0 +1,418 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ============================================================ -->
+<!-- JBoss, the OpenSource J2EE webOS -->
+<!-- Distributable under LGPL license. -->
+<!-- See terms of license at
http://www.gnu.org. -->
+<!-- ============================================================ -->
+
+<!-- $Id$ -->
+
+<project>
+
+ <description>JBossWS test archive builder</description>
+
+ <!-- ================================================================== -->
+ <!-- Building -->
+ <!-- ================================================================== -->
+
+ <target name="build-samples-jaxws" description="Build the
deployments.">
+
+ <mkdir dir="${tests.output.dir}/test-libs"/>
+
+ <!-- jaxws-samples-asynchronous -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-asynchronous.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/asynchronous/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/asynchronous/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/asynchronous/TestEndpointBean.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-context -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-context.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/context/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/context/EndpointJSE.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/context/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-context.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/context/EndpointEJB.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/context/META-INF">
+ <include name="jboss.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-samples-eardeployment -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-eardeployment.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/eardeployment/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/eardeployment/JSEBean.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/eardeployment/WEB-INF">
+ <include name="jboss-web.xml"/>
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-eardeployment.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/eardeployment/EJB3Bean.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/eardeployment/WEB-INF">
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-eardeployment.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-samples-eardeployment.jar"/>
+ <include name="jaxws-samples-eardeployment.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/eardeployment/META-INF">
+ <include name="jboss-app.xml"/>
+ </metainf>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-eardeployment42.ear">
+ <fileset dir="${tests.output.dir}/test-libs">
+ <include name="jaxws-samples-eardeployment.jar"/>
+ <include name="jaxws-samples-eardeployment.war"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/eardeployment/META-INF">
+ <include name="application.xml"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-samples-exception -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-exception.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/exception/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/jaxws/**"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/ExceptionEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/ExceptionEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/UserException.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/TestHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/exception/server/jaxws-handlers-server.xml"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-handlerchain -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-handlerchain.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/handlerchain/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/handlerchain/EndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/handlerchain/Endpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/handlerchain/*Handler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/handlerchain/jaxws-handlers-server.xml"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-httpbinding -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-httpbinding-jaxb.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/httpbinding/jaxb/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/ProviderBeanJAXB.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/WebServiceEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/UserType.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/httpbinding/shared">
+ <include name="wsdl/HttpBinding.wsdl"/>
+ </webinf>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-httpbinding-payload.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/httpbinding/payload/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/ProviderBeanPayload.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/LogicalSourceHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/httpbinding/httpbinding-handlers.xml"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/httpbinding/shared">
+ <include name="wsdl/HttpBinding.wsdl"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-samples-logicalhandler -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-logicalhandler-source.war"
+
webxml="${tests.output.dir}/test-resources/jaxws/samples/logicalhandler/WEB-INF/web-source.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceDocImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointSourceRpcImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/LogicalSourceHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/ProtocolHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/PortHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/Echo.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/EchoResponse.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/jaxws-server-source-handlers.xml"/>
+ </classes>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-logicalhandler-jaxb.war"
+
webxml="${tests.output.dir}/test-resources/jaxws/samples/logicalhandler/WEB-INF/web-jaxb.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXBImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/SOAPEndpointJAXB.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/LogicalJAXBHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/ProtocolHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/PortHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/Echo.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/EchoResponse.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/ObjectFactory.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/logicalhandler/jaxws-server-jaxb-handlers.xml"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-oneway -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-oneway.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/oneway/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/oneway/PingEndpointImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-provider -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-provider-jaxb.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/provider/jaxb/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/ProviderBeanJAXB.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/WebServiceEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/UserType.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/provider/jaxb/WEB-INF">
+ <include name="wsdl/Provider.wsdl"/>
+ </webinf>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-provider-message.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/provider/message/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/ProviderBeanMessage.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/provider/message/WEB-INF">
+ <include name="wsdl/Provider.wsdl"/>
+ </webinf>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-provider-payload.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/provider/payload/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/ProviderBeanPayload.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/LogicalSourceHandler.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/provider/provider-handlers.xml"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/provider/payload/WEB-INF">
+ <include name="wsdl/Provider.wsdl"/>
+ </webinf>
+ </war>
+
+ <!-- jaxws-samples-retail -->
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-retail.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/advanced/retail/**/*.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/advanced/retail/jaxws-handler.xml"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/advanced/retail/META-INF">
+ <include name="wsdl/*"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-samples-serviceref -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-serviceref.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/serviceref/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpointService.class"/>
+ </classes>
+ </war>
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-samples-serviceref-client.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/ApplicationClient.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpoint.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/serviceref/META-INF">
+ <include name="application-client.xml"/>
+ <include name="jboss-client.xml"/>
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+ <war
destfile="${tests.output.dir}/test-libs/jaxws-samples-serviceref-servlet-client.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/serviceref/servlet-client/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/ServletClient.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpoint.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/serviceref/META-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/serviceref/servlet-client/WEB-INF">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-samples-serviceref-ejb-client.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/EJBClient.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/EJBRemote.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/serviceref/TestEndpoint.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/serviceref/META-INF">
+ <include name="ejb-jar.xml"/>
+ <include name="jboss.xml"/>
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-samples-soapbinding -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-soapbinding.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/soapbinding/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/jaxws/**"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/DocBare.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/DocWrapped.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/ExampleSEI.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/DocBareServiceImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/DocWrappedServiceImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/ExampleServiceImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/SubmitBareRequest.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/soapbinding/SubmitBareResponse.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-swaref -->
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-swaref.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/jaxws/**"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/BareEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/BareEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/RpcLitEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/RpcLitEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/WrappedEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/WrappedEndpointImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/swaref/DocumentPayload*.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-samples-webmethod -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-webmethod.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webmethod/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webmethod/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webmethod/TestEndpointImpl.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-webparam -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-webparam.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webparam/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webparam/PingServiceImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webparam/PingDocument.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webparam/SecurityHeader.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-webresult -->
+ <war warfile="${tests.output.dir}/test-libs/jaxws-samples-webresult.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webresult/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webresult/CustomerServiceImpl.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webresult/CustomerRecord.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webresult/USAddress.class"/>
+ </classes>
+ </war>
+
+ <!-- jaxws-samples-webservice -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-webservice01-jse.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webservice/WEB-INF01/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/JSEBean01.class"/>
+ </classes>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-webservice02-jse.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webservice/WEB-INF02/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/JSEBean02.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/webservice/WEB-INF02">
+ <include name="wsdl/**"/>
+ </webinf>
+ </war>
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-webservice03-jse.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webservice/WEB-INF03/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/JSEBean03.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EndpointInterface03.class"/>
+ </classes>
+ </war>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-webservice01-ejb3.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3Bean01.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3RemoteInterface.class"/>
+ </fileset>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-webservice02-ejb3.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3Bean02.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3RemoteInterface.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/webservice/META-INF02">
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+ <jar
jarfile="${tests.output.dir}/test-libs/jaxws-samples-webservice03-ejb3.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3Bean03.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EJB3RemoteInterface.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webservice/EndpointInterface03.class"/>
+ </fileset>
+ </jar>
+
+ <!-- jaxws-samples-webserviceref -->
+ <war
warfile="${tests.output.dir}/test-libs/jaxws-samples-webserviceref.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpointImpl.class"/>
+ </classes>
+ </war>
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-samples-webserviceref-client.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpointClientOne.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpoint.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/META-INF">
+ <include name="application-client.xml"/>
+ <include name="jboss-client.xml"/>
+ <include name="wsdl/**"/>
+ </metainf>
+ <manifest>
+ <attribute name="main-class"
value="org.jboss.test.ws.jaxws.samples.webserviceref.TestEndpointClientOne"/>
+ </manifest>
+ </jar>
+ <war
destfile="${tests.output.dir}/test-libs/jaxws-samples-webserviceref-servlet-client.war"
+
webxml="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/WEB-INF-client/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/ServletClient.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/EchoResponse.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/Echo.class"/>
+ </classes>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/META-INF">
+ <include name="wsdl/**"/>
+ </webinf>
+ <webinf
dir="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/WEB-INF-client">
+ <include name="jboss-web.xml"/>
+ </webinf>
+ </war>
+ <jar
destfile="${tests.output.dir}/test-libs/jaxws-samples-webserviceref-ejb3-client.jar">
+ <fileset dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/EJB3Client.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/EJB3Remote.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpointService.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/TestEndpoint.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/EchoResponse.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/webserviceref/Echo.class"/>
+ </fileset>
+ <metainf
dir="${tests.output.dir}/test-resources/jaxws/samples/webserviceref/META-INF">
+ <include name="jboss.xml"/>
+ <include name="wsdl/**"/>
+ </metainf>
+ </jar>
+
+ <!-- jaxws-samples-xop-doclit -->
+ <war
jarfile="${tests.output.dir}/test-libs/jaxws-samples-xop-doclit.war"
webxml="${tests.output.dir}/test-resources/jaxws/samples/xop/doclit/WEB-INF/web.xml">
+ <classes dir="${tests.output.dir}/test-classes">
+ <include
name="org/jboss/test/ws/jaxws/samples/xop/doclit/*.class"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/xop/doclit/jaxws/**"/>
+ <include
name="org/jboss/test/ws/jaxws/samples/xop/doclit/jaxws-handlers-server.xml"/>
+ <exclude
name="org/jboss/test/ws/jaxws/samples/xop/doclit/*TestCase.class"/>
+ </classes>
+ </war>
+
+ <!-- Please add alphabetically -->
+
+ </target>
+
+</project>
Property changes on:
stack/cxf/branches/tdiesler/trunk/modules/testsuite/framework-tests/src/ant/framework-samples-jaxws.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml 2008-04-19 10:56:24 UTC
(rev 6543)
+++ stack/cxf/branches/tdiesler/trunk/modules/testsuite/pom.xml 2008-04-19 10:58:40 UTC
(rev 6544)
@@ -4,7 +4,7 @@
<name>JBoss Web Services - Stack CXF Testsuite</name>
<artifactId>jbossws-cxf-testsuite</artifactId>
- <packaging>jar</packaging>
+ <packaging>pom</packaging>
<!-- Parent -->
<parent>
@@ -21,6 +21,12 @@
<surefire.jvm.args>-Djava.security.manager
-Djava.security.policy=src/test/etc/tst.policy</surefire.jvm.args>
</properties>
+ <!-- Modules -->
+ <modules>
+ <module>cxf-tests</module>
+ </modules>
+
+ <!-- Build -->
<build>
<testResources>
<testResource>
@@ -31,34 +37,9 @@
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
- <testResource>
- <targetPath>../test-resources</targetPath>
- <directory>src/test-framework/resources</directory>
- <filtering>true</filtering>
- </testResource>
</testResources>
<plugins>
<plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>test-compile</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <property name="tests.output.dir"
value="${project.build.directory}"/>
- <ant antfile="ant/cxf-jars-jaxws.xml"
target="build-jars-jaxws"/>
- <ant antfile="ant/cxf-samples-jaxws.xml"
target="build-samples-jaxws"/>
- <ant antfile="ant/framework-jars-jaxws.xml"
target="build-jars-jaxws"/>
- <ant antfile="ant/framework-samples-jaxws.xml"
target="build-samples-jaxws"/>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args}</argLine>
@@ -94,141 +75,4 @@
</plugins>
</build>
- <profiles>
- <!--
- mvn -Denv=jboss422 test
- -->
- <profile>
- <id>jboss422-profile</id>
- <activation>
- <property>
- <name>env</name>
- <value>jboss422</value>
- </property>
- </activation>
- <properties>
- <jboss.version>4.2.2.GA</jboss.version>
- <jbossws.integration.target>jboss422</jbossws.integration.target>
- <jboss.remoting.version>2.2.2.SP1</jboss.remoting.version>
- <jboss.serialization.version>1.0.3.GA</jboss.serialization.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.jboss.client</groupId>
- <artifactId>jbossall-client</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-cxf-client</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-jboss42</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-spi</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <!-- [JBWS-2097] Unlock WS-ReliableMessaging in all stacks -->
- <exclude>org/jboss/test/ws/jaxws/samples/wsrm/**</exclude>
- <exclude>org/jboss/test/ws/jaxws/cxf/wsrm/**</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
- <profile>
- <id>jboss500-profile</id>
- <dependencies>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jnp-client</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.client</groupId>
- <artifactId>jboss-client</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-integration</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.client</groupId>
- <artifactId>jmx-invoker-adaptor-client</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.javaee</groupId>
- <artifactId>jboss-javaee</artifactId>
- <version>5.0.0.Beta3Update1</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.security</groupId>
- <artifactId>jboss-security-spi</artifactId>
- <version>2.0.2.Beta4</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.security</groupId>
- <artifactId>jbosssx-client</artifactId>
- <version>2.0.2.Beta4</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-common</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-cxf-client</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-framework</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-jboss</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-spi</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </profile>
- -->
- </profiles>
-
</project>