JBossWS SVN: r19143 - stack/cxf/branches/arquillian/modules/dist.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-15 09:06:05 -0500 (Mon, 15 Dec 2014)
New Revision: 19143
Modified:
stack/cxf/branches/arquillian/modules/dist/pom.xml
Log:
spring profile in dist module for installing spring libs with the stack
Modified: stack/cxf/branches/arquillian/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-15 13:34:39 UTC (rev 19142)
+++ stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-15 14:06:05 UTC (rev 19143)
@@ -278,6 +278,17 @@
<jboss.home>${project.build.directory}/wildfly-${jboss.version}</jboss.home>
</properties>
</profile>
+
+ <!--
+ Name: spring
+ Descr: Include spring libraries when updating the stack on the server
+ -->
+ <profile>
+ <id>spring</id>
+ <properties>
+ <spring>true</spring>
+ </properties>
+ </profile>
<!--
Name: deploy
@@ -304,6 +315,7 @@
<target>
<property name="jbossws.integration.target" value="${jbossws.integration.target}"/>
<property name="jboss.home" value="${jboss.home}"/>
+ <property name="spring" value="${spring}"/>
<ant antfile="src/main/scripts/build-deploy.xml"/>
</target>
</configuration>
11 years
JBossWS SVN: r19142 - hudson/branches.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-15 08:34:39 -0500 (Mon, 15 Dec 2014)
New Revision: 19142
Added:
hudson/branches/arquillian/
Log:
Branching for creating a hudson instance to verify the 'arquillian' jbws-cxf branch
11 years
JBossWS SVN: r19141 - stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-15 05:20:45 -0500 (Mon, 15 Dec 2014)
New Revision: 19141
Added:
stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/SecurityActions.java
Modified:
stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java
Log:
[JBWS-3858] Misconfigured TCCL during endpoint method invocations when Spring integration is enabled
Modified: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java 2014-12-12 15:06:01 UTC (rev 19140)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/JBossWSInvoker.java 2014-12-15 10:20:45 UTC (rev 19141)
@@ -174,10 +174,13 @@
BusFactory.setThreadDefaultBus(null);
setNamespaceContextSelector(exchange);
+ ClassLoader cl = SecurityActions.getContextClassLoader();
+ SecurityActions.setContextClassLoader(serviceObject.getClass().getClassLoader());
try {
invHandler.invoke(ep, inv);
return inv.getReturnValue();
} finally {
+ SecurityActions.setContextClassLoader(cl);
//make sure the right bus is restored after coming back from the endpoint method
BusFactory.setThreadDefaultBus(threadBus);
clearNamespaceContextSelector(exchange);
Added: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/SecurityActions.java
===================================================================
--- stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/SecurityActions.java (rev 0)
+++ stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/SecurityActions.java 2014-12-15 10:20:45 UTC (rev 19141)
@@ -0,0 +1,82 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.stack.cxf;
+
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+
+/**
+ *
+ * @author alessio.soldano(a)jboss.com
+ * @since 17-Feb-2010
+ *
+ */
+class SecurityActions
+{
+ /**
+ * Get context classloader.
+ *
+ * @return the current context classloader
+ */
+ static ClassLoader getContextClassLoader()
+ {
+ SecurityManager sm = System.getSecurityManager();
+ if (sm == null)
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ else
+ {
+ return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>() {
+ public ClassLoader run()
+ {
+ return Thread.currentThread().getContextClassLoader();
+ }
+ });
+ }
+ }
+
+ /**
+ * Set context classloader.
+ *
+ * @param classLoader the classloader
+ */
+ static void setContextClassLoader(final ClassLoader classLoader)
+ {
+ if (System.getSecurityManager() == null)
+ {
+ Thread.currentThread().setContextClassLoader(classLoader);
+ }
+ else
+ {
+ AccessController.doPrivileged(new PrivilegedAction<Object>()
+ {
+ public Object run()
+ {
+ Thread.currentThread().setContextClassLoader(classLoader);
+ return null;
+ }
+ });
+ }
+ }
+
+}
Property changes on: stack/cxf/trunk/modules/server/src/main/java/org/jboss/wsf/stack/cxf/SecurityActions.java
___________________________________________________________________
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
11 years
JBossWS SVN: r19140 - in stack/cxf/branches/arquillian/modules/dist: src/main/distro and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-12 10:06:01 -0500 (Fri, 12 Dec 2014)
New Revision: 19140
Removed:
stack/cxf/branches/arquillian/modules/dist/src/main/distro/Install.txt
stack/cxf/branches/arquillian/modules/dist/src/main/distro/JBossORG-EULA.txt
stack/cxf/branches/arquillian/modules/dist/src/main/distro/ant.properties.example
stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-deploy.xml
stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-setup.xml
stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-testsuite.xml
stack/cxf/branches/arquillian/modules/dist/src/main/distro/build.xml
stack/cxf/branches/arquillian/modules/dist/src/main/distro/test-exclude.xsl
stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-bin-dist.xml
stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-src-dist.xml
stack/cxf/branches/arquillian/modules/dist/src/main/scripts/test-exclude.xsl
Modified:
stack/cxf/branches/arquillian/modules/dist/pom.xml
Log:
Cleanup dist module a bit..
Modified: stack/cxf/branches/arquillian/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -160,42 +160,42 @@
</execution>
</executions>
</plugin>
-
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-trax</artifactId>
- <version>1.8.0</version>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <id>generate-exclude-file</id>
- <phase>validate</phase>
- <configuration>
- <target>
- <mkdir dir="${basedir}/target/exclude-file" />
- <xslt style="${basedir}/src/main/distro/test-exclude.xsl" in="../testsuite/pom.xml" out="${basedir}/target/exclude-file/test-excludes-wildfly800.txt">
- <param name="targetName" expression="wildfly800" />
- </xslt>
- <xslt style="${basedir}/src/main/distro/test-exclude.xsl" in="../testsuite/pom.xml" out="${basedir}/target/exclude-file/test-excludes-wildfly810.txt">
- <param name="targetName" expression="wildfly810" />
- </xslt>
- <xslt style="${basedir}/src/main/distro/test-exclude.xsl" in="../testsuite/pom.xml" out="${basedir}/target/exclude-file/test-excludes-wildfly900.txt">
- <param name="targetName" expression="wildfly900" />
- </xslt>
- </target>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
+ <inherited>false</inherited>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>resources</goal>
+ <goal>generate</goal>
+ </goals>
+ <phase>post-integration-test</phase>
+ </execution>
+ </executions>
+ <configuration>
+ <sourceDocumentName>JBossWS-CXF.xml</sourceDocumentName>
+ <sourceDirectory>${basedir}/src/main/doc</sourceDirectory>
+ <imageResource>
+ <directory>${basedir}/src/main/doc</directory>
+ <includes>
+ <include>images/*</include>
+ <include>author/**</include>
+ </includes>
+ </imageResource>
+ <formats>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ </options>
+ </configuration>
</plugin>
-
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
@@ -313,137 +313,6 @@
</plugins>
</build>
</profile>
-
- <!--
- Name: bindist
- Descr: Build the binary distribution
- -->
- <profile>
- <id>bindist</id>
- <activation>
- <property>
- <name>bindist</name>
- </property>
- </activation>
- <dependencies>
- <!-- Libraries required for running binary distro testsuite and not available on server-->
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-wildfly800-tests-integration</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-wildfly810-tests-integration</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.wildfly</groupId>
- <artifactId>wildfly-webservices-tests-integration</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <inherited>false</inherited>
- <groupId>org.jboss.maven.plugins</groupId>
- <artifactId>maven-jdocbook-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>resources</goal>
- <goal>generate</goal>
- </goals>
- <phase>prepare-package</phase>
- </execution>
- </executions>
- <configuration>
- <sourceDocumentName>JBossWS-CXF.xml</sourceDocumentName>
- <sourceDirectory>${basedir}/src/main/doc</sourceDirectory>
- <imageResource>
- <directory>${basedir}/src/main/doc</directory>
- <includes>
- <include>images/*</include>
- <include>author/**</include>
- </includes>
- </imageResource>
- <formats>
- <!--format>
- <formatName>pdf</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
- <finalName>JBossWS-CXF_Guide.pdf</finalName>
- </format-->
- <format>
- <formatName>html</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format>
- <!-- <format>
- <formatName>html_single</formatName>
- <stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
- <finalName>index.html</finalName>
- </format> -->
- </formats>
- <options>
- <xincludeSupported>true</xincludeSupported>
- </options>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>distribution-package</id>
- <configuration>
- <finalName>assembly</finalName>
- <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptors>
- <descriptor>src/main/scripts/assembly-deploy-artifacts.xml</descriptor>
- <descriptor>src/main/scripts/assembly-bin-dist.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <!--
- Name: srcdist
- Descr: Build the source distribution
- -->
- <profile>
- <id>srcdist</id>
- <activation>
- <property>
- <name>srcdist</name>
- </property>
- </activation>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>distribution-package</id>
- <configuration>
- <finalName>assembly</finalName>
- <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptors>
- <descriptor>src/main/scripts/assembly-deploy-artifacts.xml</descriptor>
- <descriptor>src/main/scripts/assembly-src-dist.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
</profiles>
</project>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/Install.txt
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/Install.txt 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/Install.txt 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,39 +0,0 @@
-
-${project.name}
-http://jbossws.jboss.org
-
-Version: jbossws-cxf-${project.version}
-
-Installation instructions
-=========================
-
-In order to install JBossWS the following steps are necessary:
-
-1.) Copy ant.properties.examples to ant.properties
-2.) Modify the target container location in ant.properties
-3.) Execute one of the following
-
- ant deploy-wildfly800
- ant deploy-wildfly810
- ant deploy-wildfly900
-
- By default Spring Framework libraries are not installed to application
-server. In order to do that, please add the -Dspring=true property option when
-running the ant script:
-
- ant -Dspring=true deploy-jboss800
-
-Please note Spring is required for advanced configuration only, whenever users
-want to provide their own jbossws-cxf.xml Spring configuration file.
-
-4.) Execute the samples to verify your installation
-
- 'ant tests'
-
- You should see no errors.
-
-If you have any questions, please post to the userforum:
-https://community.jboss.org/en/jbossws
-
-Enjoy,
-The JBossWS Team
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/JBossORG-EULA.txt
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/JBossORG-EULA.txt 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/JBossORG-EULA.txt 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,107 +0,0 @@
-LICENSE AGREEMENT
-JBOSS(r)
-
-This License Agreement governs the use of the Software Packages and any updates to the Software
-Packages, regardless of the delivery mechanism. Each Software Package is a collective work
-under U.S. Copyright Law. Subject to the following terms, Red Hat, Inc. ("Red Hat") grants to
-the user ("Client") a license to the applicable collective work(s) pursuant to the
-GNU Lesser General Public License v. 2.1 except for the following Software Packages:
-(a) JBoss Portal Forums and JBoss Transactions JTS, each of which is licensed pursuant to the
-GNU General Public License v.2;
-
-(b) JBoss Rules, which is licensed pursuant to the Apache License v.2.0;
-
-(c) an optional download for JBoss Cache for the Berkeley DB for Java database, which is licensed under the
-(open source) Sleepycat License (if Client does not wish to use the open source version of this database,
-it may purchase a license from Sleepycat Software);
-
-and (d) the BPEL extension for JBoss jBPM, which is licensed under the Common Public License v.1,
-and, pursuant to the OASIS BPEL4WS standard, requires parties wishing to redistribute to enter various
-royalty-free patent licenses.
-
-Each of the foregoing licenses is available at http://www.opensource.org/licenses/index.php.
-
-1. The Software. "Software Packages" refer to the various software modules that are created and made available
-for distribution by the JBoss.org open source community at http://www.jboss.org. Each of the Software Packages
-may be comprised of hundreds of software components. The end user license agreement for each component is located in
-the component's source code. With the exception of certain image files identified in Section 2 below,
-the license terms for the components permit Client to copy, modify, and redistribute the component,
-in both source code and binary code forms. This agreement does not limit Client's rights under,
-or grant Client rights that supersede, the license terms of any particular component.
-
-2. Intellectual Property Rights. The Software Packages are owned by Red Hat and others and are protected under copyright
-and other laws. Title to the Software Packages and any component, or to any copy, modification, or merged portion shall
-remain with the aforementioned, subject to the applicable license. The "JBoss" trademark, "Red Hat" trademark, the
-individual Software Package trademarks, and the "Shadowman" logo are registered trademarks of Red Hat and its affiliates
-in the U.S. and other countries. This agreement permits Client to distribute unmodified copies of the Software Packages
-using the Red Hat trademarks that Red Hat has inserted in the Software Packages on the condition that Client follows Red Hat's
-trademark guidelines for those trademarks located at http://www.redhat.com/about/corporate/trademark/. Client must abide by
-these trademark guidelines when distributing the Software Packages, regardless of whether the Software Packages have been modified.
-If Client modifies the Software Packages, then Client must replace all Red Hat trademarks and logos identified at
-http://www.jboss.com/company/logos, unless a separate agreement with Red Hat is executed or other permission granted.
-Merely deleting the files containing the Red Hat trademarks may corrupt the Software Packages.
-
-3. Limited Warranty. Except as specifically stated in this Paragraph 3 or a license for a particular
-component, to the maximum extent permitted under applicable law, the Software Packages and the
-components are provided and licensed "as is" without warranty of any kind, expressed or implied,
-including the implied warranties of merchantability, non-infringement or fitness for a particular purpose.
-Red Hat warrants that the media on which Software Packages may be furnished will be free from defects in
-materials and manufacture under normal use for a period of 30 days from the date of delivery to Client.
-Red Hat does not warrant that the functions contained in the Software Packages will meet Client's requirements
-or that the operation of the Software Packages will be entirely error free or appear precisely as described
-in the accompanying documentation. This warranty extends only to the party that purchases the Services
-pertaining to the Software Packages from Red Hat or a Red Hat authorized distributor.
-
-4. Limitation of Remedies and Liability. To the maximum extent permitted by applicable law, the remedies
-described below are accepted by Client as its only remedies. Red Hat's entire liability, and Client's
-exclusive remedies, shall be: If the Software media is defective, Client may return it within 30 days of
-delivery along with a copy of Client's payment receipt and Red Hat, at its option, will replace it or
-refund the money paid by Client for the Software. To the maximum extent permitted by applicable law,
-Red Hat or any Red Hat authorized dealer will not be liable to Client for any incidental or consequential
-damages, including lost profits or lost savings arising out of the use or inability to use the Software,
-even if Red Hat or such dealer has been advised of the possibility of such damages. In no event shall
-Red Hat's liability under this agreement exceed the amount that Client paid to Red Hat under this
-Agreement during the twelve months preceding the action.
-
-5. Export Control. As required by U.S. law, Client represents and warrants that it:
-(a) understands that the Software Packages are subject to export controls under the
-U.S. Commerce Department's Export Administration Regulations ("EAR");
-
-(b) is not located in a prohibited destination country under the EAR or U.S. sanctions regulations
-(currently Cuba, Iran, Iraq, Libya, North Korea, Sudan and Syria);
-
-(c) will not export, re-export, or transfer the Software Packages to any prohibited destination, entity,
-or individual without the necessary export license(s) or authorizations(s) from the U.S. Government;
-
-(d) will not use or transfer the Software Packages for use in any sensitive nuclear, chemical or
-biological weapons, or missile technology end-uses unless authorized by the U.S. Government by
-regulation or specific license;
-
-(e) understands and agrees that if it is in the United States and exports or transfers the Software
-Packages to eligible end users, it will, as required by EAR Section 740.17(e), submit semi-annual
-reports to the Commerce Department's Bureau of Industry & Security (BIS), which include the name and
-address (including country) of each transferee;
-
-and (f) understands that countries other than the United States may restrict the import, use, or
-export of encryption products and that it shall be solely responsible for compliance with any such
-import, use, or export restrictions.
-
-6. Third Party Programs. Red Hat may distribute third party software programs with the Software Packages
-that are not part of the Software Packages and which Client must install separately. These third party
-programs are subject to their own license terms. The license terms either accompany the programs or
-can be viewed at http://www.redhat.com/licenses/. If Client does not agree to abide by the applicable
-license terms for such programs, then Client may not install them. If Client wishes to install the programs
-on more than one system or transfer the programs to another party, then Client must contact the licensor
-of the programs.
-
-7. General. If any provision of this agreement is held to be unenforceable, that shall not affect the
-enforceability of the remaining provisions. This License Agreement shall be governed by the laws of the
-State of North Carolina and of the United States, without regard to any conflict of laws provisions,
-except that the United Nations Convention on the International Sale of Goods shall not apply.
-
-Copyright 2006 Red Hat, Inc. All rights reserved.
-"JBoss" and the JBoss logo are registered trademarks of Red Hat, Inc.
-All other trademarks are the property of their respective owners.
-
- Page 1 of 1 18 October 2006
-
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/ant.properties.example
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/ant.properties.example 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/ant.properties.example 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,24 +0,0 @@
-#
-# A sample ant properties file
-#
-
-# Optional JBoss Home
-wildfly800.home=(a)wildfly800.home@
-wildfly810.home=(a)wildfly810.home@
-wildfly900.home=(a)wildfly900.home@
-
-# The JBoss server under test. This can be [wildfly800|wildfly810|wildfly900]
-jbossws.integration.target=wildfly800
-
-# The JBoss settings
-jboss.bind.address=localhost
-
-# Management console authentication
-jbossws.deployer.authentication.username=admin
-jbossws.deployer.authentication.password=admin
-
-# Java Compiler options
-javac.debug=yes
-javac.deprecation=no
-javac.fail.onerror=yes
-javac.verbose=no
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-deploy.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-deploy.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-deploy.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,208 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2014, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
-
-<project>
-
- <!-- ================================================================== -->
- <!-- Prepare Deployment Structure WildFly-8.0.x -->
- <!-- ================================================================== -->
-
- <target name="deploy-structure-wildfly80x" depends="prepare-deploy">
- <delete dir="${deploy.structure}"/>
-
- <path id="jboss.ant.tasks.classpath">
- <fileset dir="${deploy.artifacts.dir}">
- <include name="**/jbossws-common-tools.jar"/>
- <include name="**/jandex.jar"/>
- </fileset>
- </path>
- <taskdef name="installModules" classname="org.jboss.ws.tools.ant.InstallModulesTask" classpathref="jboss.ant.tasks.classpath"/>
- <taskdef name="jandex" classname="org.jboss.jandex.JandexAntTask" classpathref="jboss.ant.tasks.classpath"/>
-
- <jandex run="true" verbose="false" newJar="true">
- <fileset dir="${deploy.artifacts.dir}/lib">
- <include name="cxf*security.jar"/>
- </fileset>
- </jandex>
- <antcall target="deploy-jbossws-cxf-modules-as8" inheritall="false">
- <param name="installserver" value="${deploy.structure}/modules/system/layers/base"/>
- <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
- <param name="jbossid" value="${jbossws.integration.target}"/>
- <param name="modules-jbossid" value="wildfly800"/>
- </antcall>
- <copy toDir="${deploy.structure}/modules/system/layers/base">
- <fileset dir="${deploy.artifacts.dir}/modules/wildfly800">
- <include name="**/jboss/as/webservices/main/module.xml"/>
- <include name="**/jboss/as/webservices/server/integration/main/module.xml"/>
- </fileset>
- </copy>
- </target>
-
- <!-- ================================================================== -->
- <!-- Deployment wildfly800 -->
- <!-- ================================================================== -->
-
- <target name="target-wildfly800">
- <property name="jbossws.integration.target" value="wildfly800"/>
- <echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
- </target>
-
- <target name="deploy-wildfly800" depends="undeploy-wildfly800,deploy-structure-wildfly80x,check-spring,install-spring-module80x" description="Deploy jbossws to wildfly800">
- <fail message="Not available: ${wildfly800.available.file}" unless="wildfly800.available"/>
- <copy todir="${wildfly800.home}" overwrite="true" verbose="true">
- <fileset dir="${deploy.structure}">
- <exclude name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </copy>
- <!-- Install org/jboss/as/webservices module.xml separately since it needs to reference libs already on the AS -->
- <installModules targetDir="${wildfly800.home}/modules/system/layers/base/">
- <fileset dir="${deploy.structure}/modules/system/layers/base">
- <include name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </installModules>
- </target>
-
- <target name="undeploy-wildfly800" depends="target-wildfly800,init" description="Remove jbossws from wildfly800">
- <fail message="Not available: ${wildfly800.available.file}" unless="wildfly800.available"/>
- <macro-undeploy-jbossws-modules targetdir="${wildfly800.home}/modules/system/layers/base" defaultmodulesconf="${jbossws.default.modules.conf}" modifyjbossintegration="true"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Deployment wildfly810 -->
- <!-- ================================================================== -->
-
- <target name="target-wildfly810">
- <property name="jbossws.integration.target" value="wildfly810"/>
- <echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
- </target>
-
- <target name="deploy-wildfly810" depends="undeploy-wildfly810,deploy-structure-wildfly80x,check-spring,install-spring-module80x" description="Deploy jbossws to wildfly810">
- <fail message="Not available: ${wildfly810.available.file}" unless="wildfly810.available"/>
- <copy todir="${wildfly810.home}" overwrite="true" verbose="true">
- <fileset dir="${deploy.structure}">
- <exclude name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </copy>
- <!-- Install org/jboss/as/webservices module.xml separately since it needs to reference libs already on the AS -->
- <installModules targetDir="${wildfly810.home}/modules/system/layers/base/">
- <fileset dir="${deploy.structure}/modules/system/layers/base">
- <include name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </installModules>
- </target>
-
- <target name="undeploy-wildfly810" depends="target-wildfly810,init" description="Remove jbossws from wildfly810">
- <fail message="Not available: ${wildfly810.available.file}" unless="wildfly810.available"/>
- <macro-undeploy-jbossws-modules targetdir="${wildfly810.home}/modules/system/layers/base" defaultmodulesconf="${jbossws.default.modules.conf}" modifyjbossintegration="true"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Prepare Deployment Structure WildFly-9.0.x -->
- <!-- ================================================================== -->
-
- <target name="deploy-structure-wildfly90x" depends="prepare-deploy">
- <delete dir="${deploy.structure}"/>
- <path id="jboss.ant.tasks.classpath">
- <fileset dir="${deploy.artifacts.dir}">
- <include name="**/jbossws-common-tools.jar"/>
- <include name="**/jandex.jar"/>
- </fileset>
- </path>
- <taskdef name="installModules" classname="org.jboss.ws.tools.ant.InstallModulesTask" classpathref="jboss.ant.tasks.classpath"/>
- <taskdef name="jandex" classname="org.jboss.jandex.JandexAntTask" classpathref="jboss.ant.tasks.classpath"/>
- <jandex run="true" verbose="false" newJar="true">
- <fileset dir="${deploy.artifacts.dir}/lib">
- <include name="cxf*security.jar"/>
- </fileset>
- </jandex>
- <antcall target="deploy-jbossws-cxf-modules-as9" inheritall="false">
- <param name="installserver" value="${deploy.structure}/modules/system/layers/base"/>
- <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
- <param name="jbossid" value="${jbossws.integration.target}"/>
- <param name="modules-jbossid" value="wildfly900"/>
- </antcall>
- <copy toDir="${deploy.structure}/modules/system/layers/base">
- <fileset dir="${deploy.artifacts.dir}/modules/wildfly900">
- <include name="**/jboss/as/webservices/main/module.xml"/>
- <include name="**/jboss/as/webservices/server/integration/main/module.xml"/>
- </fileset>
- </copy>
- </target>
-
- <!-- ================================================================== -->
- <!-- Deployment wildfly900 -->
- <!-- ================================================================== -->
-
- <target name="target-wildfly900">
- <property name="jbossws.integration.target" value="wildfly900"/>
- <echo message="jbossws.integration.target=${jbossws.integration.target}" file="${target.properties.file}"/>
- </target>
- <target name="deploy-wildfly900" depends="undeploy-wildfly900,deploy-structure-wildfly90x,check-spring,install-spring-module90x" description="Deploy jbossws to wildfly900">
- <fail message="Not available: ${wildfly900.available.file}" unless="wildfly900.available"/>
- <copy todir="${wildfly900.home}" overwrite="true" verbose="true">
- <fileset dir="${deploy.structure}">
- <exclude name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </copy>
- <!-- Install org/jboss/as/webservices module.xml separately since it needs to reference libs already on the AS -->
- <installModules targetDir="${wildfly900.home}/modules/system/layers/base/">
- <fileset dir="${deploy.structure}/modules/system/layers/base">
- <include name="**/jboss/as/webservices/**/module.xml"/>
- </fileset>
- </installModules>
- </target>
-
- <target name="undeploy-wildfly900" depends="target-wildfly900,init" description="Remove jbossws from wildfly900">
- <fail message="Not available: ${wildfly900.available.file}" unless="wildfly900.available"/>
- <macro-undeploy-jbossws-modules targetdir="${wildfly900.home}/modules/system/layers/base" defaultmodulesconf="${jbossws.default.modules.conf}" modifyjbossintegration="false"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Spring -->
- <!-- ================================================================== -->
- <target name="check-spring">
- <condition property="spring-required">
- <and>
- <istrue value="${spring}"/>
- </and>
- </condition>
- </target>
-
- <target name="install-spring-module80x" if="spring-required">
- <antcall target="deploy-spring-module" inheritall="false">
- <param name="installserver" value="${deploy.structure}/modules/system/layers/base"/>
- <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
- <param name="modules-jbossid" value="wildfly800"/>
- </antcall>
- </target>
-
- <target name="install-spring-module90x" if="spring-required">
- <antcall target="deploy-spring-module" inheritall="false">
- <param name="installserver" value="${deploy.structure}/modules/system/layers/base"/>
- <param name="thirdpartydir" value="${deploy.artifacts.dir}"/>
- <param name="modules-jbossid" value="wildfly900"/>
- </antcall>
- </target>
-
-</project>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-setup.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-setup.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-setup.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2014, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
-
-<project>
-
- <!-- ================================================================== -->
- <!-- Setup -->
- <!-- ================================================================== -->
-
- <target name="prepare">
-
- <!-- Load jbossws.integration.target properties -->
- <property file="${target.properties.file}"/>
-
- <property name="wildfly800.available.file" value="${wildfly800.home}/jboss-modules.jar"/>
- <property name="wildfly810.available.file" value="${wildfly810.home}/jboss-modules.jar"/>
- <property name="wildfly900.available.file" value="${wildfly900.home}/jboss-modules.jar"/>
-
- <available property="wildfly800.available" file="${wildfly800.available.file}"/>
- <available property="wildfly810.available" file="${wildfly810.available.file}"/>
- <available property="wildfly900.available" file="${wildfly900.available.file}"/>
-
- <tstamp>
- <format property="build.id" pattern="yyyyMMddHHmm"/>
- </tstamp>
- </target>
-
-</project>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-testsuite.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-testsuite.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/build-testsuite.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,734 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2014, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
-
-<project>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
- <target name="tests-prepare" depends="prepare">
-
- <!-- Define jboss.home -->
- <condition property="jboss.home" value="${wildfly800.home}">
- <equals arg1="${jbossws.integration.target}" arg2="wildfly800"/>
- </condition>
- <condition property="jboss.home" value="${wildfly810.home}">
- <equals arg1="${jbossws.integration.target}" arg2="wildfly810"/>
- </condition>
- <condition property="jboss.home" value="${wildfly900.home}">
- <equals arg1="${jbossws.integration.target}" arg2="wildfly900"/>
- </condition>
-
- <!-- Verify required properties that must be set before this file is imported -->
- <fail message="Tests output dir not set." unless="tests.output.dir"/>
-
- <!-- Verify availabililty of tools.jar -->
- <condition property="tools.jar" value="${java.home}/lib/tools.jar">
- <available file="${java.home}/lib/tools.jar"/>
- </condition>
- <condition property="tools.jar" value="${java.home}/../lib/tools.jar">
- <available file="${java.home}/../lib/tools.jar"/>
- </condition>
- <!-- [JBWS-2113] tools.jar not available on Mac OS X -->
- <condition property="tools.jar" value="${java.home}/../Classes/classes.jar">
- <available file="${java.home}/../Classes/classes.jar"/>
- </condition>
- <fail message="Not available: ${java.home}/lib/tools.jar, ${java.home}/../lib/tools.jar" unless="tools.jar"/>
-
- <!-- Use -Ddebug=true for remote debugging -->
- <condition property="remote.debug.line" value="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005">
- <isset property="debug"/>
- </condition>
- <condition property="remote.debug.line" value="">
- <not>
- <isset property="debug"/>
- </not>
- </condition>
-
- <!-- Set a hostname property based on COMPUTERNAME for win32, HOSTNAME
- otherwise and initialize the node0/node1 cluster hostnames to localhost
- and ${hostname} by default. If you cannot route multicast traffic between
- localhost and hostname, then you need to specify node0 and node1 binding
- in the local.properties that can in order to be able to run the clustering
- tests.
- -->
- <property environment="env"/>
- <condition property="hostname" value="${env.COMPUTERNAME}">
- <os family="windows"/>
- </condition>
- <condition property="hostname" value="${env.HOSTNAME}">
- <not>
- <os family="windows"/>
- </not>
- </condition>
-
- <!-- node0 defaults -->
- <property name="node0" value="${jboss.bind.address}"/>
- <property name="node0.http.url" value="http://${node0}:8080"/>
- <property name="node0.jndi.url" value="jnp://${node0}:1099"/>
- <property name="node0.hajndi.url" value="jnp://${node0}:1100"/>
-
- <mkdir dir="${tests.output.dir}"/>
- <delete file="${tests.output.dir}/test.log" failonerror="false"/>
-
- <property name="jboss.lib" value="${jboss.home}/lib"/>
-
- <echo/>
- <echo message="-----------------------------------------------"/>
- <echo message="jboss.home = ${jboss.home}"/>
- <echo message="excludesfile = ${excludesfile}"/>
- <echo message="java.home = ${java.home}"/>
- <echo message="jboss.bind = ${jboss.bind.address}"/>
- <echo message="-----------------------------------------------"/>
-
- <tstamp>
- <format property="build.id" pattern="yyyyMMddHHmm"/>
- </tstamp>
- </target>
-
- <target name="tests-classpath" depends="tests-classpath-wildfly80x,tests-classpath-wildfly90x">
- <path id="tests.javac.classpath">
- <path refid="ws.stack.classpath"/>
- <path refid="integration.target.javac.classpath"/>
- </path>
- <path id="tests.client.classpath">
- <path refid="ws.stack.classpath"/>
- <path refid="integration.target.client.classpath"/>
- </path>
- </target>
-
- <target name="tests-classpath-wildfly80x" depends="tests-prepare" if="jbossws.integration.wildfly80x">
-
- <!-- Java Endorsed -->
- <condition property="endorsed.dirs" value="${jboss.home}/modules/system/layers/base/javax/xml/ws/api/main/">
- <isset property="jboss.home"/>
- </condition>
-
- <path id="integration.target.javac.classpath">
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/activation/api/main/">
- <include name="activation-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/mail/api/main/">
- <include name="javax.mail-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/common-core/main/">
- <include name="jboss-common-core-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logging/main/">
- <include name="jboss-logging-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/federation/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/ejb/api/main/">
- <include name="jboss-ejb-api_3.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/ejb3/main/">
- <include name="jboss-ejb3-ext-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/servlet/api/main/">
- <include name="jboss-servlet-api_3.1_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/annotation/api/main/">
- <include name="jboss-annotations-api_1.2_spec-*.jar"/>
- </fileset>
- </path>
-
- <!--
- The 's.client.classpath' contains jars that are available in the target container's client directory.
- There jars apply to all supported stacks. It MUST NOT contains jars from a local thirdparty dir.
-
- The 'ws.stack.classpath' contains jars that come with a specific stack distribution.
- The 's.extra.classpath' contains stack specific jars that are needed to run the stack specific tests.
- -->
- <path id="integration.target.client.classpath">
- <!-- included from thirdparty local dir as it's not installed on AS - START -->
- <pathelement location="${thirdparty.dir}/jbossws-${jbossws.integration.target}-tests-integration.jar"/>
- <!-- included from thirdparty local dir as it's not installed on AS - END -->
- <pathelement location="${jboss.home}/jboss-modules.jar"/>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logging/main/">
- <include name="jboss-logging-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/controller/main/">
- <include name="wildfly-controller-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/controller-client/main/">
- <include name="wildfly-controller-client-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/wildfly/security/manager/main/">
- <include name="wildfly-security-manager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/server/main/">
- <include name="wildfly-server-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/protocol/main/">
- <include name="wildfly-protocol-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/dmr/main/">
- <include name="jboss-dmr-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/marshalling/main/">
- <include name="jboss-marshalling-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/main/">
- <include name="slf4j-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main/">
- <include name="jcl-over-slf4j-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/impl/main/">
- <include name="slf4j-jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logmanager/main/">
- <include name="jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/log4j/logmanager/main/">
- <include name="log4j-jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/mail/api/main/">
- <include name="javax.mail-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/servlet/api/main/">
- <include name="jboss-servlet-api_3.1_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/transaction/api/main/">
- <include name="jboss-transaction-api_1.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/threads/main/">
- <include name="jboss-threads-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketbox/main/">
- <include name="picketbox-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/federation/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/core/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/ejb/api/main/">
- <include name="jboss-ejb-api_3.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/ejb-client/main/">
- <include name="jboss-ejb-client-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/apache/xerces/main/">
- <include name="xercesImpl-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/common-core/main/">
- <include name="jboss-common-core-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/javassist/main/">
- <include name="javassist-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/security/jacc/api/main/">
- <include name="jboss-jacc-api*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remoting/main/">
- <include name="jboss-remoting-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/marshalling/river/main/">
- <include name="jboss-marshalling-river-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remoting-jmx/main/">
- <include name="remoting-jmx-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/sasl/main/">
- <include name="jboss-sasl-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/io/netty/main/">
- <include name="netty-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xb/main/">
- <include name="jbossxb-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/joda/time/main/">
- <include name="joda-time-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/apache/xalan/main/">
- <include name="serializer-*.jar"/>
- <include name="xalan-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/codehaus/woodstox/main/">
- <include name="woodstox-core-asl-*.jar"/>
- <include name="stax2-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xnio/main/">
- <include name="xnio-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xnio/nio/main/">
- <include name="xnio-nio-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remote-naming/main/">
- <include name="jboss-remote-naming-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/bouncycastle/main/">
- <include name="bcprov-*.jar"/>
- </fileset>
- <pathelement location="${tools.jar}"/>
- </path>
- </target>
-
- <target name="tests-classpath-wildfly90x" depends="tests-prepare" if="jbossws.integration.wildfly90x">
-
- <!-- Java Endorsed -->
- <condition property="endorsed.dirs" value="${jboss.home}/modules/system/layers/base/javax/xml/ws/api/main/">
- <isset property="jboss.home"/>
- </condition>
-
- <path id="integration.target.javac.classpath">
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/activation/api/main/">
- <include name="activation-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/mail/api/main/">
- <include name="javax.mail-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/common-core/main/">
- <include name="jboss-common-core-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logging/main/">
- <include name="jboss-logging-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/federation/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/ejb/api/main/">
- <include name="jboss-ejb-api_3.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/ejb3/main/">
- <include name="jboss-ejb3-ext-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/servlet/api/main/">
- <include name="jboss-servlet-api_3.1_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/annotation/api/main/">
- <include name="jboss-annotations-api_1.2_spec-*.jar"/>
- </fileset>
- </path>
-
- <!--
- The 's.client.classpath' contains jars that are available in the target container's client directory.
- There jars apply to all supported stacks. It MUST NOT contains jars from a local thirdparty dir.
-
- The 'ws.stack.classpath' contains jars that come with a specific stack distribution.
- The 's.extra.classpath' contains stack specific jars that are needed to run the stack specific tests.
- -->
- <path id="integration.target.client.classpath">
- <!-- included from thirdparty local dir as it's not installed on AS - START -->
- <pathelement location="${thirdparty.dir}/jbossws-${jbossws.integration.target}-tests-integration.jar"/>
- <!-- included from thirdparty local dir as it's not installed on AS - END -->
- <pathelement location="${jboss.home}/jboss-modules.jar"/>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logging/main/">
- <include name="jboss-logging-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/controller/main/">
- <include name="wildfly-controller-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/controller-client/main/">
- <include name="wildfly-controller-client-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/wildfly/security/manager/main/">
- <include name="wildfly-security-manager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/server/main/">
- <include name="wildfly-server-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/as/protocol/main/">
- <include name="wildfly-protocol-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/dmr/main/">
- <include name="jboss-dmr-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/marshalling/main/">
- <include name="jboss-marshalling-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/main/">
- <include name="slf4j-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main/">
- <include name="jcl-over-slf4j-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/slf4j/impl/main/">
- <include name="slf4j-jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/logmanager/main/">
- <include name="jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/log4j/logmanager/main/">
- <include name="log4j-jboss-logmanager-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/mail/api/main/">
- <include name="javax.mail-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/servlet/api/main/">
- <include name="jboss-servlet-api_3.1_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/transaction/api/main/">
- <include name="jboss-transaction-api_1.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/threads/main/">
- <include name="jboss-threads-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketbox/main/">
- <include name="picketbox-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/federation/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/picketlink/core/main/">
- <include name="picketlink-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/ejb/api/main/">
- <include name="jboss-ejb-api_3.2_spec-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/ejb-client/main/">
- <include name="jboss-ejb-client-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/apache/xerces/main/">
- <include name="xercesImpl-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/common-core/main/">
- <include name="jboss-common-core-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/javassist/main/">
- <include name="javassist-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/javax/security/jacc/api/main/">
- <include name="jboss-jacc-api*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remoting/main/">
- <include name="jboss-remoting-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/marshalling/river/main/">
- <include name="jboss-marshalling-river-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remoting-jmx/main/">
- <include name="remoting-jmx-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/sasl/main/">
- <include name="jboss-sasl-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/io/netty/main/">
- <include name="netty-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xb/main/">
- <include name="jbossxb-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/joda/time/main/">
- <include name="joda-time-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/apache/xalan/main/">
- <include name="serializer-*.jar"/>
- <include name="xalan-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/codehaus/woodstox/main/">
- <include name="woodstox-core-asl-*.jar"/>
- <include name="stax2-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xnio/main/">
- <include name="xnio-api-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/xnio/nio/main/">
- <include name="xnio-nio-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/jboss/remote-naming/main/">
- <include name="jboss-remote-naming-*.jar"/>
- </fileset>
- <fileset dir="${jboss.home}/modules/system/layers/base/org/bouncycastle/main/">
- <include name="bcprov-*.jar"/>
- </fileset>
- <pathelement location="${tools.jar}"/>
- </path>
- </target>
-
-
- <!-- ================================================================== -->
- <!-- Compiling -->
- <!-- ================================================================== -->
-
- <macrodef name="macro-compile-classes">
- <attribute name="excludesfile"/>
- <attribute name="srcdir"/>
- <sequential>
- <mkdir dir="${tests.output.dir}/test-classes"/>
- <javac destdir="${tests.output.dir}/test-classes" debug="${javac.debug}" encoding="utf-8" verbose="${javac.verbose}" deprecation="${javac.deprecation}"
- failonerror="${javac.fail.onerror}" excludesfile="${excludesfile}">
- <src path="@{srcdir}"/>
- <classpath refid="tests.javac.classpath"/>
- </javac>
- </sequential>
- </macrodef>
-
- <!-- ================================================================== -->
- <!-- Building -->
- <!-- ================================================================== -->
-
- <macrodef name="macro-copy-resources">
- <attribute name="srcdir"/>
- <sequential>
-
- <!-- copy etc -->
- <copy todir="${tests.output.dir}/test-classes">
- <fileset dir="@{srcdir}/etc">
- <include name="*.properties"/>
- <include name="tst.policy"/>
- <include name="log4j.xml"/>
- </fileset>
- <filterset>
- <filter token="jboss.bind.address" value="${node0}"/>
- <filter token="remote.protocol" value="${remote.protocol}"/>
- <filter token="remote.port" value="${remote.port}"/>
- </filterset>
- </copy>
- <copy todir="${tests.output.dir}/test-classes">
- <fileset dir="@{srcdir}/etc">
- <include name="*.keystore"/>
- <include name="*.truststore"/>
- </fileset>
- </copy>
-
- <!-- copy handler definitions -->
- <copy todir="${tests.output.dir}/test-classes">
- <fileset dir="@{srcdir}/java">
- <include name="**/*.xml"/>
- </fileset>
- </copy>
-
- <!-- copy non binary files -->
- <copy todir="${tests.output.dir}/test-resources">
- <fileset dir="@{srcdir}/resources">
- <include name="**/*.wsdl"/>
- <include name="**/*.xml"/>
- </fileset>
- <filterset>
- <filter token="java.home" value="${java.home}"/>
- <filter token="jboss.bind.address" value="${node0}"/>
- <filter token="tests.output.dir" value="${tests.output.dir}"/>
- <filter token="wsdl-publish-location" value="${tests.output.dir}/wsdl-publish"/>
- </filterset>
- </copy>
-
- <!-- Copy binary files -->
- <copy todir="${tests.output.dir}/test-resources">
- <fileset dir="@{srcdir}/resources">
- <exclude name="**/*.wsdl"/>
- <exclude name="**/*.xml"/>
- </fileset>
- </copy>
- </sequential>
- </macrodef>
-
- <!-- ================================================================== -->
- <!-- Testing -->
- <!-- ================================================================== -->
-
- <!-- Run all unit tests and generate a report -->
- <target name="tests" depends="tests-jars" description="Run all unit tests and generate a report">
- <antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/**/*TestCase.class org/jboss/test/ws/**/*TestCaseForked.class"/>
- <param name="exclude.wildcard" value="no-wildcard-exclude-see-excludesfile"/>
- <param name="haltonfailure" value="false"/>
- </antcall>
- <antcall target="tests-report"/>
- </target>
-
- <!-- Run smoke test cases -->
- <target name="tests-smoke" depends="tests-init" description="Run smoke unit tests">
- <antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCaseForked.class"/>
- <!--
- According to our commit policy, haltonfailure MUST be be true for tests-smoke
- It is a prerequisite for any commit that this target passes without failure.
- -->
- <param name="haltonfailure" value="true"/>
- </antcall>
- <antcall target="tests-report"/>
- </target>
-
- <!-- Run samples test cases -->
- <target name="tests-samples" depends="tests-init" description="Run samples unit tests">
- <antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/*/samples/**/*TestCase.class"/>
- <param name="haltonfailure" value="false"/>
- </antcall>
- </target>
-
- <!-- Run integration test cases -->
- <target name="tests-integration" depends="tests-jars" description="Run integration unit tests">
- <antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class org/jboss/test/ws/*/smoke/**/*TestCase.class"/>
- <param name="haltonfailure" value="false"/>
- </antcall>
- <antcall target="tests-report"/>
- </target>
-
- <!--
- Run a collection of unit tests.
- ant -Dtest=jaxws/samples/provider test
- -->
- <target name="test" depends="tests-init" if="test" description="Run all unit tests in a given directory">
- <antcall target="tests-run-internal">
- <param name="include.wildcard" value="org/jboss/test/ws/${test}/**/*TestCase.class"/>
- <param name="exclude.wildcard" value="no-wildcard-exclude-see-excludesfile"/>
- <param name="haltonfailure" value="false"/>
- </antcall>
- </target>
-
- <!-- Common test target -->
- <target name="tests-run-internal" depends="tests-init">
- <mkdir dir="${tests.output.dir}/test-reports"/>
- <junit printsummary="yes" showoutput="yes" dir="${tests.output.dir}" haltonfailure="${haltonfailure}">
- <jvmarg value="-Djava.security.manager"/>
- <jvmarg value="-ea"/>
- <!--jvmarg value="-Dcom.sun.xml.ws.transport.http.HttpAdapter.dump=true"/>
- <jvmarg value="-Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump=true"/-->
-
- <sysproperty key="jdk.home" value="${env.JAVA_HOME}"/>
- <sysproperty key="log4j.output.dir" value="${tests.output.dir}"/>
- <sysproperty key="appclient.output.dir" value="${tests.output.dir}/appclient-logs"/>
- <sysproperty key="client.scenario" value="${client.scenario}"/>
- <sysproperty key="interop" value="${interop}"/>
- <sysproperty key="java.endorsed.dirs" value="${endorsed.dirs}"/>
- <sysproperty key="java.naming.provider.url" value="${node0.jndi.url}"/>
- <sysproperty key="java.protocol.handler.pkgs" value="org.jboss.net.protocol|org.jboss.vfs.protocol|org.jboss.virtual.protocol"/>
- <sysproperty key="javax.net.ssl.trustStore" value="${tests.output.dir}/test-classes/test.truststore"/>
- <sysproperty key="javax.net.ssl.trustStorePassword" value="changeit"/>
- <sysproperty key="javax.net.ssl.trustStoreType" value="jks"/>
- <sysproperty key="javax.net.ssl.keyStore" value="${tests.output.dir}/test-classes/client.keystore"/>
- <sysproperty key="javax.net.ssl.keyStorePassword" value="changeit"/>
- <sysproperty key="javax.net.ssl.keyStoreType" value="jks"/>
- <sysproperty key="org.jboss.security.ignoreHttpsHost" value="true"/>
- <sysproperty key="java.security.policy" value="${tests.output.dir}/test-classes/tst.policy"/>
- <sysproperty key="jboss.home" value="${jboss.home}"/>
- <sysproperty key="jboss.bind.address" value="${node0}"/>
- <sysproperty key="jbossws.integration.target" value="${jbossws.integration.target}"/>
- <sysproperty key="jbossws.deployer.authentication.username" value="${jbossws.deployer.authentication.username}"/>
- <sysproperty key="jbossws.deployer.authentication.password" value="${jbossws.deployer.authentication.password}"/>
- <sysproperty key="jmx.authentication.username" value="${jmx.authentication.username}"/>
- <sysproperty key="jmx.authentication.password" value="${jmx.authentication.password}"/>
- <sysproperty key="org.jboss.ws.testsuite.securityDomain.users.propfile" value="${tests.output.dir}/test-classes/jbossws-users.properties"/>
- <sysproperty key="org.jboss.ws.testsuite.securityDomain.roles.propfile" value="${tests.output.dir}/test-classes/jbossws-roles.properties"/>
- <sysproperty key="org.jboss.ws.testsuite.server.keystore" value="${tests.output.dir}/test-classes/test.keystore"/>
- <sysproperty key="org.jboss.ws.testsuite.server.truststore" value="${tests.output.dir}/test-classes/test.truststore"/>
- <sysproperty key="test.archive.directory" value="${tests.output.dir}/test-libs"/>
- <sysproperty key="test.classes.directory" value="${tests.output.dir}/test-classes"/>
- <sysproperty key="test.resources.directory" value="${tests.output.dir}/test-resources"/>
- <sysproperty key="test.username" value="${test.username}"/>
- <sysproperty key="test.password" value="${test.password}"/>
- <classpath>
- <path refid="tests.client.classpath"/>
- <pathelement location="${tests.output.dir}/test-classes"/>
- </classpath>
- <formatter type="plain" usefile="true"/>
- <formatter type="xml" usefile="true"/>
- <batchtest todir="${tests.output.dir}/test-reports" fork="true">
- <fileset dir="${tests.output.dir}/test-classes" includes="${include.wildcard}" excludes="${exclude.wildcard}"/>
- </batchtest>
- </junit>
- </target>
-
- <!--
- Run a single unit test.
- ant -Dtest=org.jboss.test.ws.jaxws.samples.provider.ProviderPayloadTestCase one-test
- -->
- <target name="one-test" depends="tests-init" if="test" description="Run a single unit test">
- <mkdir dir="${tests.output.dir}/test-reports"/>
-
- <junit printsummary="yes" showoutput="yes" dir="${tests.output.dir}">
- <jvmarg line="${remote.debug.line}"/>
- <jvmarg value="-Djava.security.manager"/>
- <jvmarg value="-ea"/>
- <!--jvmarg value="-Dcom.sun.xml.ws.transport.http.HttpAdapter.dump=true"/>
- <jvmarg value="-Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump=true"/-->
-
- <sysproperty key="jdk.home" value="${env.JAVA_HOME}"/>
- <sysproperty key="log4j.output.dir" value="${tests.output.dir}"/>
- <sysproperty key="appclient.output.dir" value="${tests.output.dir}/appclient-logs"/>
- <sysproperty key="client.scenario" value="${client.scenario}"/>
- <sysproperty key="interop" value="${interop}"/>
- <sysproperty key="java.endorsed.dirs" value="${endorsed.dirs}"/>
- <sysproperty key="java.naming.provider.url" value="${node0.jndi.url}"/>
- <sysproperty key="java.protocol.handler.pkgs" value="org.jboss.net.protocol|org.jboss.vfs.protocol|org.jboss.virtual.protocol"/>
- <sysproperty key="javax.net.ssl.trustStore" value="${tests.output.dir}/test-classes/test.truststore"/>
- <sysproperty key="javax.net.ssl.trustStorePassword" value="changeit"/>
- <sysproperty key="javax.net.ssl.trustStoreType" value="jks"/>
- <sysproperty key="javax.net.ssl.keyStore" value="${tests.output.dir}/test-classes/client.keystore"/>
- <sysproperty key="javax.net.ssl.keyStorePassword" value="changeit"/>
- <sysproperty key="javax.net.ssl.keyStoreType" value="jks"/>
- <sysproperty key="org.jboss.security.ignoreHttpsHost" value="true"/>
- <sysproperty key="java.security.policy" value="${tests.output.dir}/test-classes/tst.policy"/>
- <sysproperty key="jboss.home" value="${jboss.home}"/>
- <sysproperty key="jboss.bind.address" value="${node0}"/>
- <sysproperty key="jbossws.integration.target" value="${jbossws.integration.target}"/>
- <sysproperty key="jbossws.deployer.authentication.username" value="${jbossws.deployer.authentication.username}"/>
- <sysproperty key="jbossws.deployer.authentication.password" value="${jbossws.deployer.authentication.password}"/>
- <sysproperty key="jmx.authentication.username" value="${jmx.authentication.username}"/>
- <sysproperty key="jmx.authentication.password" value="${jmx.authentication.password}"/>
- <sysproperty key="org.jboss.ws.testsuite.securityDomain.users.propfile" value="${tests.output.dir}/test-classes/jbossws-users.properties"/>
- <sysproperty key="org.jboss.ws.testsuite.securityDomain.roles.propfile" value="${tests.output.dir}/test-classes/jbossws-roles.properties"/>
- <sysproperty key="org.jboss.ws.testsuite.server.keystore" value="${tests.output.dir}/test-classes/test.keystore"/>
- <sysproperty key="org.jboss.ws.testsuite.server.truststore" value="${tests.output.dir}/test-classes/test.truststore"/>
- <sysproperty key="test.archive.directory" value="${tests.output.dir}/test-libs"/>
- <sysproperty key="test.classes.directory" value="${tests.output.dir}/test-classes"/>
- <sysproperty key="test.resources.directory" value="${tests.output.dir}/test-resources"/>
- <sysproperty key="test.username" value="${test.username}"/>
- <sysproperty key="test.password" value="${test.password}"/>
- <classpath>
- <path refid="tests.client.classpath"/>
- <pathelement location="${tests.output.dir}/test-classes"/>
- </classpath>
- <formatter type="plain" usefile="true"/>
- <formatter type="xml" usefile="true"/>
- <test todir="${tests.output.dir}/test-reports" name="${test}" fork="true"/>
- </junit>
- </target>
-
- <!-- ================================================================== -->
- <!-- Reporting -->
- <!-- ================================================================== -->
-
- <!-- Build the tests report -->
- <target name="tests-report" depends="tests-init" description="Build the tests report">
- <mkdir dir="${tests.output.dir}/test-reports"/>
- <junitreport todir="${tests.output.dir}/test-reports">
- <fileset dir="${tests.output.dir}/test-reports">
- <include name="TEST-*.xml"/>
- </fileset>
- <report format="frames" todir="${tests.output.dir}/test-reports/html"/>
- </junitreport>
- <zip destfile="${tests.output.dir}/test-report-${build.id}.zip">
- <fileset dir="${tests.output.dir}" includes="test-reports/**"/>
- </zip>
- </target>
-
- <!-- ================================================================== -->
- <!-- Cleaning -->
- <!-- ================================================================== -->
-
- <target name="tests-clean" description="Delete all generated test files.">
- <delete dir="${tests.output.dir}"/>
- </target>
-
-</project>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/build.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/build.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/build.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,129 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- ~ JBoss, Home of Professional Open Source.
- ~ Copyright 2014, Red Hat, Inc., and individual contributors
- ~ as indicated by the @author tags. See the copyright.txt file in the
- ~ distribution for a full listing of individual contributors.
- ~
- ~ This is free software; you can redistribute it and/or modify it
- ~ under the terms of the GNU Lesser General Public License as
- ~ published by the Free Software Foundation; either version 2.1 of
- ~ the License, or (at your option) any later version.
- ~
- ~ This software is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- ~ Lesser General Public License for more details.
- ~
- ~ You should have received a copy of the GNU Lesser General Public
- ~ License along with this software; if not, write to the Free
- ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- -->
-
-<project basedir="." name="JBossWS-CXF">
-
- <!-- ================================================================== -->
- <!-- Setup -->
- <!-- ================================================================== -->
-
- <property name="build.dir" value="${basedir}/build"/>
- <property name="docs.dir" value="${basedir}/docs"/>
- <property name="output.dir" value="${basedir}/output"/>
- <property name="thirdparty.dir" value="${basedir}/deploy/lib"/>
- <property name="tests.dir" value="${basedir}/tests"/>
- <property name="tests.output.dir" value="${output.dir}"/>
- <property name="deploy.artifacts.dir" value="${basedir}/deploy"/>
- <property name="jbossws.default.modules.conf" value="${build.dir}/modules-deploy.conf"/>
- <property name="target.properties.file" value="${basedir}/target.properties"/>
-
- <!-- Check if ant.properties is available -->
- <available property="ant.properties.available" file="${basedir}/ant.properties"/>
- <fail message="Cannot find ant.properties. Did you copy/edit ant.properties.example?" unless="ant.properties.available"/>
- <property file="${basedir}/ant.properties"/>
-
- <import file="${build.dir}/build-setup.xml"/>
- <import file="${build.dir}/build-deploy.xml"/>
- <import file="${build.dir}/jbossws-deploy-macros.xml"/>
- <import file="${tests.dir}/ant-import/build-testsuite.xml"/>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
- <target name="init" depends="prepare">
-
- <fail message="jbossws.integration.target not set" unless="jbossws.integration.target"/>
- <echo message="integration.target=${jbossws.integration.target}"/>
-
- <condition property="jbossws.integration.wildfly80x" value="true">
- <or>
- <equals arg1="${jbossws.integration.target}" arg2="wildfly800"/>
- <equals arg1="${jbossws.integration.target}" arg2="wildfly810"/>
- </or>
- </condition>
-
- <condition property="jbossws.integration.wildfly90x" value="true">
- <or>
- <equals arg1="${jbossws.integration.target}" arg2="wildfly900"/>
- </or>
- </condition>
-
- <property name="deploy.structure" value="${output.dir}/deploy-${jbossws.integration.target}"/>
- <property name="excludesfile" value="${tests.dir}/resources/test-excludes-${jbossws.integration.target}.txt"/>
-
- <property name="remote.port" value="8080"/>
- <property name="remote.protocol" value="http-remoting"/>
- </target>
-
- <target name="tests-init" depends="init,tests-classpath">
- <!-- JBossWS jars first to override META-INF/services declarations duplicated in CXF jars (alternative is using endorsing) -->
- <path id="ws.stack.classpath">
- <fileset dir="${thirdparty.dir}">
- <include name="**/jbossws*.jar"/>
- <exclude name="**/jbossws-jboss*.jar"/>
- <exclude name="**/jbossws-wildfly*.jar"/>
- </fileset>
- <fileset dir="${thirdparty.dir}">
- <exclude name="**/jbossws*.jar"/>
- <exclude name="**/jboss-as-webservices-tests-integration.jar"/>
- </fileset>
- </path>
-
- <property name="jbossws.test.log" value="${tests.output.dir}"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Compile -->
- <!-- ================================================================== -->
-
- <target name="tests-compile" depends="tests-init" description="Compile sources">
- <macro-compile-classes srcdir="${tests.dir}/java" excludesfile="${excludesfile}"/>
- </target>
-
- <!-- ================================================================== -->
- <!-- Building -->
- <!-- ================================================================== -->
-
- <!-- Copy resources -->
- <target name="tests-copy-resources" depends="tests-init">
- <macro-copy-resources srcdir="${tests.dir}"/>
- </target>
-
- <target name="tests-jars" depends="tests-compile,tests-copy-resources"/>
-
- <target name="tests-main" depends="tests-jars" description="Build the test deployments."/>
-
- <!-- dummy targets -->
- <target name="prepare-deploy" depends="init"/>
-
- <!-- ================================================================== -->
- <!-- Miscellaneous -->
- <!-- ================================================================== -->
-
- <target name="clean" depends="prepare" description="Cleans up most generated files.">
- <delete dir="${tests.output.dir}"/>
- </target>
-
-</project>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/distro/test-exclude.xsl
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/distro/test-exclude.xsl 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/distro/test-exclude.xsl 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,16 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://maven.apache.org/POM/4.0.0">
- <xsl:param name="targetName"/>
- <xsl:output method="text"/>
- <xsl:template match="/">
- <xsl:for-each select="//m:profile[m:id=$targetName]/m:build/m:plugins/m:plugin[m:artifactId='maven-surefire-plugin']//m:excludes">
- <xsl:for-each select="m:exclude|comment()">
- <xsl:if test="self::comment()">
- <xsl:text>#</xsl:text>
- </xsl:if>
- <xsl:value-of select="."/><xsl:text> </xsl:text>
- </xsl:for-each>
- </xsl:for-each>
- </xsl:template>
-</xsl:stylesheet>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-bin-dist.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-bin-dist.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-bin-dist.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,130 +0,0 @@
-<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
-
- <id>binary-distribution</id>
- <formats>
- <format>dir</format>
- </formats>
- <includeBaseDirectory>false</includeBaseDirectory>
-
- <fileSets>
- <!-- root -->
- <fileSet>
- <directory>src/main/distro</directory>
- <outputDirectory>jbossws-cxf-bin-dist</outputDirectory>
- <includes>
- <include>build.xml</include>
- </includes>
- </fileSet>
- <fileSet>
- <directory>src/main/distro</directory>
- <outputDirectory>jbossws-cxf-bin-dist</outputDirectory>
- <filtered>true</filtered>
- <includes>
- <include>ant.properties.example</include>
- </includes>
- </fileSet>
- <!-- build -->
- <fileSet>
- <directory>src/main/distro</directory>
- <outputDirectory>jbossws-cxf-bin-dist/build</outputDirectory>
- <includes>
- <include>build-deploy.xml</include>
- <include>build-setup.xml</include>
- </includes>
- </fileSet>
- <fileSet>
- <directory>../resources/src/main/resources/resources</directory>
- <outputDirectory>jbossws-cxf-bin-dist/build</outputDirectory>
- <includes>
- <include>modules-deploy.conf</include>
- <include>jbossws-deploy-macros.xml</include>
- </includes>
- </fileSet>
- <!-- docs -->
- <fileSet>
- <directory>src/main/distro</directory>
- <outputDirectory>jbossws-cxf-bin-dist/docs</outputDirectory>
- <filtered>true</filtered>
- <includes>
- <include>Install.txt</include>
- <include>ReleaseNotes.txt</include>
- <include>JBossORG-EULA.txt</include>
- </includes>
- </fileSet>
- <fileSet>
- <directory>target/docbook/publish</directory>
- <outputDirectory>jbossws-cxf-bin-dist/docs</outputDirectory>
- </fileSet>
- <!-- deploy -->
- <fileSet>
- <directory>target/assembly/deploy-artifacts</directory>
- <outputDirectory>jbossws-cxf-bin-dist/deploy</outputDirectory>
- </fileSet>
- <!-- test etc -->
- <fileSet>
- <directory>../testsuite/cxf-tests/src/test</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests</outputDirectory>
- <includes>
- <include>etc/**</include>
- </includes>
- </fileSet>
- <!-- test excludes -->
- <fileSet>
- <directory>target/exclude-file</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests/resources</outputDirectory>
- <includes>
- <include>test-excludes-*.txt</include>
- </includes>
- </fileSet>
- <!-- Stack specific tests -->
- <fileSet>
- <directory>../testsuite/cxf-tests/src/test</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests</outputDirectory>
- <includes>
- <include>java/org/jboss/test/ws/jaxws/samples/**</include>
- <include>java/org/jboss/wsf/test/**</include>
- <include>resources/jaxws/samples/**</include>
- </includes>
- </fileSet>
- <!-- Test utils -->
- <fileSet>
- <directory>../test-utils/src/main</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests</outputDirectory>
- <includes>
- <include>java/org/jboss/wsf/test/**</include>
- </includes>
- </fileSet>
- <!-- Stack agnostic tests -->
- <fileSet>
- <directory>../testsuite/shared-tests/src/test</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests</outputDirectory>
- <includes>
- <include>ant-import/**</include>
- <include>java/org/jboss/test/helper/**</include>
- <include>java/org/jboss/test/ws/jaxws/samples/**</include>
- <include>java/org/jboss/test/ws/jaxws/smoke/**</include>
- <include>java/org/jboss/test/ws/appclient/**</include>
- <include>java/org/jboss/test/ws/management/**</include>
- <include>java/org/jboss/test/ws/saaj/**</include>
- <include>resources/jaxws/samples/**</include>
- <include>resources/jaxws/smoke/**</include>
- <include>resources/management/**</include>
- <include>resources/saaj/**</include>
- </includes>
- </fileSet>
- <!-- Testsuite build -->
- <fileSet>
- <directory>src/main/distro</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests/ant-import</outputDirectory>
- <includes>
- <include>build-testsuite.xml</include>
- </includes>
- </fileSet>
- <!-- Appclient patches -->
- <fileSet>
- <directory>../testsuite/src/test/resources/</directory>
- <outputDirectory>jbossws-cxf-bin-dist/tests/etc/appclient</outputDirectory>
- </fileSet>
- </fileSets>
-</assembly>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-src-dist.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-src-dist.xml 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/scripts/assembly-src-dist.xml 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,38 +0,0 @@
-<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
-
- <id>source-distribution</id>
- <formats>
- <format>dir</format>
- </formats>
- <includeBaseDirectory>false</includeBaseDirectory>
-
- <fileSets>
- <fileSet>
- <directory>../../eclipse/</directory>
- <outputDirectory>jbossws-cxf-src-dist/eclipse/</outputDirectory>
- </fileSet>
- <fileSet>
- <directory>../../src/</directory>
- <outputDirectory>jbossws-cxf-src-dist/src/</outputDirectory>
- </fileSet>
- <fileSet>
- <directory>../</directory>
- <outputDirectory>jbossws-cxf-src-dist/modules/</outputDirectory>
- <excludes>
- <exclude>**/target/**</exclude>
- </excludes>
- </fileSet>
- <fileSet>
- <directory>../../</directory>
- <outputDirectory>jbossws-cxf-src-dist/</outputDirectory>
- <includes>
- <include>.classpath</include>
- <include>.project</include>
- <include>build.xml</include>
- <include>pom.xml</include>
- </includes>
- </fileSet>
- </fileSets>
-
-</assembly>
Deleted: stack/cxf/branches/arquillian/modules/dist/src/main/scripts/test-exclude.xsl
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/src/main/scripts/test-exclude.xsl 2014-12-12 09:33:14 UTC (rev 19139)
+++ stack/cxf/branches/arquillian/modules/dist/src/main/scripts/test-exclude.xsl 2014-12-12 15:06:01 UTC (rev 19140)
@@ -1,16 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
-xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://maven.apache.org/POM/4.0.0">
-<xsl:param name="targetName"/>
-<xsl:output method="text"/>
-<xsl:template match="/">
- <xsl:for-each select="//m:profile[m:id=$targetName]/m:build/m:plugins/m:plugin[m:artifactId='maven-surefire-plugin']//m:excludes">
- <xsl:for-each select="m:exclude|comment()">
- <xsl:if test="self::comment()">
- <xsl:text>#</xsl:text>
- </xsl:if>
- <xsl:value-of select="."/><xsl:text> </xsl:text>
- </xsl:for-each>
- </xsl:for-each>
-</xsl:template>
-</xsl:stylesheet>
11 years
JBossWS SVN: r19139 - in stack/cxf/branches/modules: modules and 100 other directories.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2014-12-12 04:33:14 -0500 (Fri, 12 Dec 2014)
New Revision: 19139
Added:
stack/cxf/branches/modules/modules/jboss-modules/
stack/cxf/branches/modules/modules/jboss-modules/build-wildfly-modules.xml
stack/cxf/branches/modules/modules/jboss-modules/lib.xml
stack/cxf/branches/modules/modules/jboss-modules/pom.xml
stack/cxf/branches/modules/modules/jboss-modules/src/
stack/cxf/branches/modules/modules/jboss-modules/src/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/module.xml
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/
stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/module.xml
Modified:
stack/cxf/branches/modules/modules/testsuite/pom.xml
stack/cxf/branches/modules/pom.xml
Log:
Add jboss-modules module to pull-wildfly and install jbossws-cxf
Added: stack/cxf/branches/modules/modules/jboss-modules/build-wildfly-modules.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/build-wildfly-modules.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/build-wildfly-modules.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,164 @@
+<project name="module-repository" basedir="." default="modules">
+
+ <import file="lib.xml"/>
+ <target name="clean">
+ <delete dir="target/modules"/>
+ </target>
+
+ <target name="modules" depends="clean">
+
+ <module-def name="org.jboss.ws.jaxws-client">
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-client"/>
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-jaspi"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.jaxws-undertow-httpspi">
+ <maven-resource group="org.jboss.ws.projects" artifact="jaxws-undertow-httpspi"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.cxf.jbossws-cxf-server">
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-server"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.cxf.jbossws-cxf-factories">
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-factories"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow">
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-transports-undertow"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.cxf.jbossws-cxf-transports-udp">
+ <maven-resource group="org.jboss.ws.cxf" artifact="jbossws-cxf-transports-udp"/>
+ </module-def>
+
+ <module-def name="org.apache.cxf">
+ <maven-resource group="org.apache.cxf" artifact="cxf-core"/>
+ </module-def>
+ <module-def name="org.apache.cxf.impl">
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-bindings-coloc"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-bindings-object"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-bindings-soap"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-bindings-xml"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-databinding-aegis"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-databinding-jaxb"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-frontend-jaxws"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-frontend-simple"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-management"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-security" jandex="true"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-transports-http"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-transports-http-hc"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-transports-jms"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-transports-local"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-wsdl"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-ws-addr"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-ws-mex"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-ws-policy"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-ws-rm"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-rt-ws-security" jandex="true"/>
+
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-common"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-java2ws"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-validator"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-wsdlto-core"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-wsdlto-databinding-jaxb"/>
+ <maven-resource group="org.apache.cxf" artifact="cxf-tools-wsdlto-frontend-jaxws"/>
+
+ <maven-resource group="org.apache.cxf.services.sts" artifact="cxf-services-sts-core"/>
+ <maven-resource group="org.apache.cxf.services.ws-discovery" artifact="cxf-services-ws-discovery-api"/>
+ <maven-resource group="org.apache.cxf.xjcplugins" artifact="cxf-xjc-boolean"/>
+ <maven-resource group="org.apache.cxf.xjcplugins" artifact="cxf-xjc-dv"/>
+ <maven-resource group="org.apache.cxf.xjcplugins" artifact="cxf-xjc-ts"/>
+ <maven-resource group="org.apache.cxf.xjcplugins" artifact="cxf-xjc-bug986"/>
+ </module-def>
+ <module-def name="org.jboss.ws.api">
+ <maven-resource group="org.jboss.ws" artifact="jbossws-api"/>
+ </module-def>
+ <module-def name="org.jboss.ws.common">
+ <maven-resource group="org.jboss.ws" artifact="jbossws-common"/>
+ </module-def>
+
+ <module-def name="org.jboss.ws.tools.common">
+ <maven-resource group="org.jboss.ws" artifact="jbossws-common-tools"/>
+ </module-def>
+ <module-def name="org.jboss.ws.spi">
+ <maven-resource group="org.jboss.ws" artifact="jbossws-spi"/>
+ </module-def>
+ <module-def name="org.apache.httpcomponents">
+ <!-- These probably do not need to be split up but we can revisit later -->
+ <maven-resource group="org.apache.httpcomponents" artifact="httpcore"/>
+ <maven-resource group="org.apache.httpcomponents" artifact="httpcore-nio"/>
+ <maven-resource group="org.apache.httpcomponents" artifact="httpasyncclient"/>
+ <maven-resource group="org.apache.httpcomponents" artifact="httpclient"/>
+ </module-def>
+ <module-def name="org.apache.neethi">
+ <maven-resource group="org.apache.neethi" artifact="neethi"/>
+ </module-def>
+ <module-def name="org.apache.santuario.xmlsec">
+ <maven-resource group="org.apache.santuario" artifact="xmlsec"/>
+ </module-def>
+ <module-def name="org.apache.ws.security">
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-bindings"/>
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-ws-security-common"/>
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-ws-security-dom"/>
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-ws-security-stax"/>
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-policy"/>
+ <maven-resource group="org.apache.wss4j" artifact="wss4j-ws-security-policy-stax"/>
+ <maven-resource group="org.jasypt" artifact="jasypt"/>
+ </module-def>
+ <module-def name="org.apache.ws.xmlschema">
+ <maven-resource group="org.apache.ws.xmlschema" artifact="xmlschema-core"/>
+ </module-def>
+
+ <module-def name="org.opensaml">
+ <maven-resource group="org.opensaml" artifact="opensaml"/>
+ <maven-resource group="org.opensaml" artifact="openws"/>
+ <maven-resource group="org.opensaml" artifact="xmltooling"/>
+ </module-def>
+ </target>
+
+
+ <target name="spring-modules" depends="clean">
+ <module-def name="org.springframework.spring" profile="spring">
+ <maven-resource group="org.springframework" artifact="spring-aop"/>
+ <maven-resource group="org.springframework" artifact="spring-beans"/>
+ <maven-resource group="org.springframework" artifact="spring-context"/>
+ <maven-resource group="org.springframework" artifact="spring-core"/>
+ <maven-resource group="org.springframework" artifact="spring-expression"/>
+ <maven-resource group="org.springframework" artifact="spring-jms"/>
+ <maven-resource group="org.springframework" artifact="spring-tx"/>
+ </module-def>
+ <move toDir="${output.dir}/spring-modules">
+ <fileset dir="target/modules/system/layers/base"/>
+ </move>
+ <antcall target="clean"/>
+ </target>
+
+ <target name="wildfly800-modules" depends="modules">
+ <module-def name="org.jboss.as.webservices" profile="wildfly800">
+ <maven-resource group="org.jboss.ws" artifact="jbossws-wildfly800-server-integration"/>
+ <maven-resource-with-classifier group="org.jboss.ws.cxf" artifact="jbossws-cxf-resources" classifier="wildfly800"/>
+ </module-def>
+ <zip destfile="${output.dir}/jbossws-cxf-wildfly800-modules-${project.version}.zip">
+ <zipfileset dir="${output.dir}/modules"/>
+ </zip>
+ </target>
+
+ <target name="wildfly900-modules" depends="modules">
+ <module-def name="org.jboss.as.webservices" profile="wildfly900">
+ <maven-resource group="org.wildfly" artifact="wildfly-webservices-server-integration"/>
+ <maven-resource-with-classifier group="org.jboss.ws.cxf" artifact="jbossws-cxf-resources" classifier="wildfly900"/>
+ </module-def>
+ <zip destfile="${output.dir}/jbossws-cxf-wildfly900-modules-${project.version}.zip">
+ <zipfileset dir="${output.dir}/modules"/>
+ </zip>
+ </target>
+</project>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/build-wildfly-modules.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/lib.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/lib.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/lib.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,195 @@
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<project name="module-repository-lib" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
+ <property name="module.repo.src.dir" value="src/main/resources/"/>
+ <property name="output.dir" value="target"/>
+ <property name="module.repo.output.dir" value="${output.dir}/modules/system/layers/base"/>
+ <property name="module.xml" value="module.xml"/>
+
+ <taskdef name="jandex" classname="org.jboss.jandex.JandexAntTask" />
+
+ <macrodef name="module-def">
+ <attribute name="name"/>
+ <attribute name="slot" default="main"/>
+ <attribute name="profile" default="modules"/>
+ <element name="resources" implicit="yes" optional="yes"/>
+ <sequential>
+ <echo message="Initializing module -> @{name}"/>
+ <!-- Figure out the correct module path -->
+ <define-module-dir name="@{name}" slot="@{slot}"/>
+
+ <!-- Make the module output director -->
+ <mkdir dir="${module.repo.output.dir}/${current.module.path}"/>
+
+ <!-- Copy the module.xml and other stuff to the output director -->
+ <copy todir="${module.repo.output.dir}/${current.module.path}">
+ <fileset dir="${module.repo.src.dir}/(a){profile}/${current.module.path}">
+ <include name="**"/>
+ </fileset>
+ </copy>
+
+ <!-- Process the resource -->
+ <resources/>
+
+ <!-- Some final cleanup -->
+ <replace file="${module.repo.output.dir}/${current.module.path}/${module.xml}">
+ <replacetoken>
+ <![CDATA[
+ <!-- Insert resources here -->]]></replacetoken>
+ <replacevalue>
+ </replacevalue>
+ </replace>
+
+ </sequential>
+ </macrodef>
+
+ <macrodef name="bundle-def">
+ <attribute name="name"/>
+ <attribute name="slot" default="main"/>
+ <element name="resources" implicit="yes" optional="yes"/>
+
+ <sequential>
+ <echo message="Initializing bundle -> @{name}"/>
+ <!-- Figure out the correct bundle path -->
+ <define-bundle-dir name="@{name}" slot="@{slot}" />
+
+ <!-- Make the bundle output director -->
+ <mkdir dir="${bundle.repo.output.dir}/${current.bundle.path}"/>
+
+ <!-- Process the resource -->
+ <resources/>
+
+ </sequential>
+ </macrodef>
+
+ <macrodef name="maven-bundle" >
+ <attribute name="group"/>
+ <attribute name="artifact"/>
+
+ <sequential>
+ <!-- Copy the jar to the bundle dir -->
+ <copy todir="${bundle.repo.output.dir}/${current.bundle.path}" failonerror="true">
+ <fileset file="${@{group}:@{artifact}:jar}"/>
+ <mapper type="flatten" />
+ </copy>
+ </sequential>
+ </macrodef>
+
+ <scriptdef name="define-module-dir" language="javascript">
+ <attribute name="name"/>
+ <attribute name="slot"/>
+ <![CDATA[
+ name = attributes.get("name");
+ name = name.replace(".", "/");
+ project.setProperty("current.module.path", name + "/" + attributes.get("slot"));
+ ]]>
+ </scriptdef>
+
+ <scriptdef name="define-bundle-dir" language="javascript">
+ <attribute name="name"/>
+ <attribute name="slot"/>
+ <![CDATA[
+ name = attributes.get("name");
+ name = name.replace(".", "/");
+ project.setProperty("current.bundle.path", name + "/" + attributes.get("slot"));
+ ]]>
+ </scriptdef>
+
+ <macrodef name="maven-resource" >
+ <attribute name="group"/>
+ <attribute name="artifact"/>
+ <attribute name="jandex" default="false" />
+
+ <sequential>
+ <!-- Copy the jar to the module dir -->
+ <copy todir="${module.repo.output.dir}/${current.module.path}" failonerror="true">
+ <fileset file="${@{group}:@{artifact}:jar}"/>
+ <mapper type="flatten" />
+ </copy>
+
+ <basename file="${@{group}:@{artifact}:jar}" property="resourcename.@{group}.(a){artifact}"/>
+ <!-- Generate the Jandex Index -->
+ <jandex run="@{jandex}" newJar="true" >
+ <fileset dir="${module.repo.output.dir}/${current.module.path}" />
+ </jandex>
+ <!-- Update the resource entry in module.xml -->
+ <define-resource-root path="${resourcename.@{group}.(a){artifact}}" jandex="@{jandex}"/>
+ <replace file="${module.repo.output.dir}/${current.module.path}/${module.xml}">
+ <replacefilter token="<!-- Insert resources here -->" value="${current.resource.root} <!-- Insert resources here -->"/>
+ </replace>
+ </sequential>
+ </macrodef>
+
+ <macrodef name="maven-resource-with-classifier" >
+ <attribute name="group"/>
+ <attribute name="artifact"/>
+ <attribute name="classifier"/>
+ <attribute name="jandex" default="false" />
+
+ <sequential>
+ <!-- Copy the jar to the module dir -->
+ <copy todir="${module.repo.output.dir}/${current.module.path}" failonerror="true">
+ <fileset file="${@{group}:@{artifact}:jar:@{classifier}}"/>
+ <!-- http://jira.codehaus.org/browse/MANTRUN-159 -->
+ <mapper type="flatten" />
+ </copy>
+
+ <basename file="${@{group}:@{artifact}:jar:@{classifier}}" property="resourcename.@{group}.@{artifact}.(a){classifier}"/>
+
+ <!-- Update the resource entry in module.xml -->
+ <define-resource-root path="${resourcename.@{group}.@{artifact}.(a){classifier}}"/>
+ <replace file="${module.repo.output.dir}/${current.module.path}/${module.xml}">
+ <replacefilter token="<!-- Insert resources here -->" value="${current.resource.root} <!-- Insert resources here -->"/>
+ </replace>
+ </sequential>
+ </macrodef>
+
+ <macrodef name="extract-native-jar" >
+ <attribute name="group"/>
+ <attribute name="artifact"/>
+ <sequential>
+ <unzip src="${@{group}:@{artifact}:jar}" dest="${module.repo.output.dir}/${current.module.path}">
+ <patternset>
+ <include name="lib/**"/>
+ </patternset>
+ </unzip>
+ </sequential>
+ </macrodef>
+
+ <scriptdef name="define-resource-root" language="javascript">
+ <attribute name="path"/>
+ <attribute name="jandex"/>
+ <![CDATA[
+ path = attributes.get("path");
+ root = "<resource-root path=\"" + path + "\"/>";
+ if(path.indexOf('${') != -1) {
+ throw "Module resource root not found, make sure it is listed in build/pom.xml" + path;
+ }
+ if(attributes.get("jandex") == "true" ) {
+ root = root + "\n\t<resource-root path=\"" + path.replace(".jar","-jandex.jar") + "\"/>";
+ }
+ project.setProperty("current.resource.root", root);
+ ]]>
+ </scriptdef>
+
+</project>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/lib.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/pom.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/pom.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/pom.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,347 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <name>JBoss Web Services - JBoss Modules</name>
+ <artifactId>jboss-modules</artifactId>
+ <packaging>pom</packaging>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-client</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-jaspi</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-transports-undertow</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-transports-udp</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-server</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly800</classifier>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-wildfly800-server-integration</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly810</classifier>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-wildfly810-server-integration</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly900</classifier>
+ </dependency>
+
+ <dependency>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-webservices-server-integration</artifactId>
+ <version>${wildfly900.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-common-tools</artifactId>
+ </dependency>
+
+ <!-- Spring -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-aop</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-expression</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-tx</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-jms</artifactId>
+ </dependency>
+ <!-- OpenSAML -->
+ <dependency>
+ <groupId>org.opensaml</groupId>
+ <artifactId>opensaml</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ <execution>
+ <id>pull-wildfly</id>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-dist</artifactId>
+ <version>${wildfly900.version}</version>
+ <type>zip</type>
+ <overWrite>false</overWrite>
+ <outputDirectory>target</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>build-modules</id>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="wildfly900-modules"/>
+ </ant>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="spring-modules"/>
+ </ant>
+ <unzip src="target/jbossws-cxf-wildfly900-modules-${project.version}.zip" dest="target/wildfly-${wildfly900.version}/modules" overwrite="true" />
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jandex</artifactId>
+ <version>1.2.2.Final</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-apache-bsf</artifactId>
+ <version>1.8.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.7.7.jbossorg-1</version>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.7R2</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+
+
+ <profiles>
+ <profile>
+ <id>wildfly800</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>pull-wildfly</id>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-dist</artifactId>
+ <version>${wildfly800.version}</version>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>target</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>build-modules</id>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="wildfly800-modules"/>
+ </ant>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="spring-modules"/>
+ </ant>
+ <unzip src="target/jbossws-cxf-wildfly800-modules-${project.version}.zip" dest="target/wildfly-${wildfly800.version}/modules" overwrite="true" />
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <profile>
+ <id>wildfly810</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>pull-wildfly</id>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-dist</artifactId>
+ <version>${wildfly810.version}</version>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>target</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>build-modules</id>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="wildfly800-modules"/>
+ </ant>
+ <ant antfile="build-wildfly-modules.xml" inheritRefs="true">
+ <target name="spring-modules"/>
+ </ant>
+ <unzip src="target/jbossws-cxf-wildfly800-modules-${project.version}.zip" dest="target/wildfly-${wildfly810.version}/modules" overwrite="true" />
+ </target>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+</profiles>
+
+
+
+</project>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2012, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.cxf.impl">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="asm.asm" />
+ <module name="javax.api" />
+ <module name="javax.annotation.api" />
+ <module name="javax.jms.api" />
+ <module name="javax.jws.api" />
+ <module name="javax.mail.api" />
+ <module name="javax.resource.api" />
+ <module name="javax.servlet.api" />
+ <module name="javax.wsdl4j.api" />
+ <module name="javax.xml.bind.api" services="import"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.xml.soap.api" />
+ <module name="javax.xml.stream.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="org.apache.commons.lang" />
+ <module name="org.apache.httpcomponents"/>
+ <module name="org.apache.neethi" />
+ <module name="org.apache.velocity" />
+ <module name="org.apache.xml-resolver" />
+ <module name="org.apache.ws.xmlschema" />
+ <module name="org.apache.ws.security" />
+ <module name="org.apache.santuario.xmlsec" />
+ <module name="org.codehaus.woodstox" />
+ <module name="org.joda.time" />
+ <module name="org.opensaml" />
+ <module name="org.springframework.spring" optional="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.apache.cxf" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.cxf">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.apache.cxf.impl" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="asm.asm" />
+ <module name="javax.api" />
+ <module name="javax.annotation.api" />
+ <module name="javax.jws.api" />
+ <module name="javax.mail.api" />
+ <module name="javax.resource.api" />
+ <module name="javax.wsdl4j.api" />
+ <module name="javax.xml.bind.api" services="import"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.xml.soap.api" />
+ <module name="javax.xml.stream.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="com.sun.xml.fastinfoset"/>
+ <module name="org.apache.neethi" />
+ <module name="org.apache.ws.xmlschema" />
+ <module name="org.codehaus.woodstox" />
+ <module name="org.apache.xml-resolver" />
+ <module name="org.springframework.spring" optional="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/cxf/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2014, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.3" name="org.apache.httpcomponents">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="org.apache.commons.codec"/>
+ <module name="org.apache.commons.logging"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/httpcomponents/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.neethi">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="javax.xml.stream.api" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/neethi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.santuario.xmlsec">
+
+ <exports>
+ <exclude path="javax/**"/>
+ </exports>
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.apache.commons.logging" />
+ <module name="org.apache.commons.codec" />
+ <module name="org.apache.xalan" />
+ <module name="org.slf4j" />
+ <module name="javax.xml.bind.api" services="import"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/santuario/xmlsec/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.ws.security">
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.xml.bind.api" services="import"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.xml.rpc.api" />
+ <module name="org.apache.commons.codec" />
+ <module name="org.apache.commons.logging" />
+ <module name="org.apache.neethi" />
+ <module name="org.apache.santuario.xmlsec" />
+ <module name="org.apache.xalan" />
+ <module name="org.joda.time" />
+ <module name="org.opensaml" />
+ <module name="org.slf4j" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/security/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.ws.xmlschema">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/apache/ws/xmlschema/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.3" name="org.jboss.as.webservices">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <exports>
+ <exclude path="org/jboss/as/webservices/logging"/>
+ </exports>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api"/>
+ <module name="javax.api"/>
+ <module name="javax.ejb.api"/>
+ <module name="javax.jws.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ejb3"/>
+ <module name="org.jboss.invocation"/>
+ <module name="org.jboss.jandex"/>
+ <module name="org.jboss.metadata.common"/>
+ <module name="org.jboss.metadata.web"/>
+ <module name="org.jboss.metadata.ear"/>
+ <module name="org.jboss.metadata.ejb"/>
+ <module name="org.jboss.staxmapper"/>
+ <module name="org.jboss.as.controller"/>
+ <module name="org.jboss.as.ejb3"/>
+ <module name="org.jboss.as.server"/>
+ <module name="org.jboss.as.ee"/>
+ <module name="org.jboss.as.naming"/>
+ <module name="org.jboss.as.security"/>
+ <module name="org.wildfly.security.manager"/>
+ <module name="org.jboss.as.web-common"/>
+ <module name="org.jboss.threads"/>
+ <module name="org.jboss.modules"/>
+ <module name="org.jboss.msc"/>
+ <module name="org.jboss.vfs"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.common-core" />
+ <module name="org.jboss.ws.api" />
+ <module name="org.jboss.ws.common" services="import" />
+ <module name="org.jboss.ws.spi" />
+ <module name="org.picketbox" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.as.webservices.server.integration">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" export="true"/>
+ <module name="javax.jws.api" export="true"/>
+ <module name="javax.wsdl4j.api" export="true"/>
+ <module name="javax.xml.ws.api" export="true"/>
+ <module name="com.sun.xml.bind" services="export" export="true"/>
+ <module name="org.jboss.ws.api" export="true"/>
+ <module name="org.jboss.ws.spi" export="true"/>
+ <module name="org.jboss.ws.common" services="import" export="true"/>
+ <module name="org.jboss.ws.jaxws-client" services="export" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-factories" services="export" export="true"/>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-udp" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-server" services="export" export="true"/>
+ <!-- Do not import services from cxf module directly, those need to come from jbossws -->
+ <module name="org.apache.cxf.impl" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ <module name="org.apache.xalan" services="export" export="true"/>
+ <module name="org.apache.xerces" services="export" export="true"/>
+ <module name="org.jboss.as.webservices" services="export" export="true"/>
+ <module name="com.sun.xml.messaging.saaj" services="export" export="true"/>
+ <module name="org.apache.ws.security" export="true"/>
+ <module name="org.apache.santuario.xmlsec" export="true"/>
+ <module name="org.bouncycastle" export="true"/>
+ <module name="org.springframework.spring" optional="true" export="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ <module name="org.jboss.xts">
+ <imports>
+ <include path="com.arjuna.mw.wst11.client"/>
+ <include path="org.jboss.jbossts.txbridge.outbound"/>
+ </imports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/as/webservices/server/integration/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.api">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="javax.xml.soap.api"/>
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.modules"/>
+ <module name="org.jboss.ws.jaxws-client" services="import"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.common">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="javax.annotation.api"/>
+ <module name="javax.xml.stream.api"/>
+ <module name="javax.ejb.api"/>
+ <module name="javax.jws.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.wsdl4j.api" />
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ws.api"/>
+ <module name="org.jboss.ws.spi"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.common-core"/>
+ <module name="org.apache.xerces" services="import"/>
+ <module name="org.jboss.jaxbintros"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/common/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.cxf.jbossws-cxf-client">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <!-- JAXB API + REF IMPL -->
+ <module name="javax.xml.bind.api" export="true"/>
+ <module name="com.sun.xml.bind" export="true" services="export"/>
+ <module name="javax.xml.ws.api" export="true"/>
+ <module name="javax.jws.api" export="true"/>
+ <!-- WSDL4J API -->
+ <module name="javax.wsdl4j.api" export="true"/>
+ <!-- JBossWS API -->
+ <module name="org.jboss.ws.api" export="true" />
+ <!-- JBossWS JAXWS client -->
+ <module name="org.jboss.ws.jaxws-client" export="true" services="export" />
+ <!-- JBossWS configuration of Apache CXF -->
+ <module name="org.jboss.ws.cxf.jbossws-cxf-factories" services="export" />
+ <!-- Apache CXF APIs only -->
+ <module name="org.apache.cxf" export="true" />
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow" export="true" services="export" />
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-udp" export="true" services="export" />
+ <module name="org.jboss.jaxbintros" export="true"/>
+ <module name="javax.security.auth.message.api" export="true"/>
+ <module name="org.picketbox" export="true"/>
+ <module name="org.apache.ws.security" export="true"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.cxf.jbossws-cxf-factories">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies/>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.cxf.jbossws-cxf-server">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.security.auth.message.api"/>
+ <module name="javax.servlet.api" />
+ <module name="javax.jws.api" />
+ <module name="javax.wsdl4j.api" />
+ <module name="javax.xml.bind.api" />
+ <module name="javax.xml.stream.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="org.jboss.ws.api" />
+ <module name="org.jboss.ws.spi" />
+ <module name="org.jboss.ws.common" />
+ <module name="org.jboss.ws.jaxws-client" />
+ <module name="org.jboss.ws.cxf.jbossws-cxf-factories" services="import"/>
+ <!-- do not import services from cxf, those need to come from jbossws -->
+ <module name="org.apache.cxf.impl">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-udp" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.jboss.common-core" />
+ <module name="org.jboss.logging" />
+ <module name="org.apache.ws.security" />
+ <module name="org.picketbox" />
+ <module name="org.springframework.spring" optional="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.cxf.jbossws-cxf-transports-udp">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="org.apache.cxf.impl" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.ws.spi" />
+ <module name="org.jboss.ws.common" />
+ <module name="javax.annotation.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="org.jboss.ws.jaxws-undertow-httpspi" />
+ <module name="org.apache.cxf.impl" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="io.undertow.core"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.jaxws-client">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.servlet.api" />
+ <module name="javax.xml.bind.api" />
+ <module name="javax.security.auth.message.api"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.xml.ws.api" />
+ <module name="org.jboss.ws.api" />
+ <module name="org.jboss.ws.spi" />
+ <module name="org.jboss.ws.common" />
+ <module name="org.jboss.ws.cxf.jbossws-cxf-factories" services="import"/>
+ <!-- do not import services from cxf, those need to come from jbossws -->
+ <module name="org.apache.cxf.impl">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-undertow" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.jboss.ws.cxf.jbossws-cxf-transports-udp" services="import">
+ <imports>
+ <include path="META-INF/cxf"/> <!-- required to also pull in the bus extensions from META-INF -->
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.apache.log4j" />
+ <module name="org.apache.neethi" />
+ <module name="org.apache.ws.security" />
+ <module name="org.jboss.logging" />
+ <module name="org.picketbox"/>
+ <module name="org.springframework.spring" optional="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="javax.wsdl4j.api" />
+ <module name="org.bouncycastle" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-client/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.jaxws-undertow-httpspi">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.xml.ws.api" />
+ <module name="io.undertow.core"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.saaj-impl">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.ws.jaxws-client" services="import"/> <!-- to pull the jbossws-cxf SOAPConnection impl -->
+ <module name="com.sun.xml.messaging.saaj" services="import"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/saaj-impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.spi">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.xml.stream.api"/>
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.ws.api"/>
+ <module name="org.jboss.as.webservices"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/spi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.common">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="gnu.getopt"/>
+ <module name="org.apache.log4j"/>
+ <module name="org.jboss.as.webservices.server.integration" services="import">
+ <imports>
+ <include path="META-INF"/>
+ <include path="META-INF/cxf"/>
+ </imports>
+ </module>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/common/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsconsume">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ <property name="jboss.require-java-version" value="1.7"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSConsume"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsconsume/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsprovide">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ <property name="jboss.require-java-version" value="1.7"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSProvide"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/jboss/ws/tools/wsprovide/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2012, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.opensaml">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="org.slf4j"/>
+ <module name="org.apache.santuario.xmlsec"/>
+ <module name="org.apache.ws.security" />
+ <module name="org.joda.time"/>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/opensaml/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.springframework.spring">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.jms.api" />
+ <module name="javax.annotation.api" />
+ <module name="org.apache.commons.logging" />
+ <module name="org.jboss.vfs" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/modules/org/springframework/spring/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.springframework.spring">
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.jms.api" />
+ <module name="javax.annotation.api" />
+ <module name="org.apache.commons.logging" />
+ <module name="org.jboss.vfs" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/spring/org/springframework/spring/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2012, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.apache.cxf.impl">
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="asm.asm" />
+ <module name="javax.api" />
+ <module name="javax.annotation.api" />
+ <module name="javax.jms.api" />
+ <module name="javax.jws.api" />
+ <module name="javax.mail.api" />
+ <module name="javax.resource.api" />
+ <module name="javax.servlet.api" />
+ <module name="javax.wsdl4j.api" />
+ <module name="javax.xml.bind.api" services="import"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.xml.soap.api" />
+ <module name="javax.xml.stream.api" />
+ <module name="javax.xml.ws.api" />
+ <module name="org.apache.commons.lang" />
+ <module name="org.apache.httpcomponents"/>
+ <module name="org.apache.neethi" />
+ <module name="org.apache.velocity" />
+ <module name="org.apache.xml-resolver" />
+ <module name="org.apache.ws.xmlschema" />
+ <module name="org.apache.ws.security" />
+ <module name="org.apache.santuario.xmlsec" />
+ <module name="org.codehaus.woodstox" />
+ <module name="org.joda.time" />
+ <module name="org.opensaml" />
+ <module name="org.springframework.spring" optional="true">
+ <imports>
+ <include path="META-INF"/>
+ </imports>
+ </module>
+ <module name="org.apache.cxf" export="true">
+ <imports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </imports>
+ <exports>
+ <include path="META-INF/cxf"/>
+ <include path="META-INF"/>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/apache/cxf/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.as.webservices">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api"/>
+ <module name="javax.api"/>
+ <module name="javax.ejb.api"/>
+ <module name="javax.jws.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ejb3"/>
+ <module name="org.jboss.invocation"/>
+ <module name="org.jboss.jandex"/>
+ <module name="org.jboss.metadata"/>
+ <module name="org.jboss.staxmapper"/>
+ <module name="org.jboss.as.controller"/>
+ <module name="org.jboss.as.ejb3"/>
+ <module name="org.jboss.as.server"/>
+ <module name="org.jboss.as.ee"/>
+ <module name="org.jboss.as.naming"/>
+ <module name="org.jboss.as.security"/>
+ <module name="org.wildfly.security.manager"/>
+ <module name="org.jboss.as.web-common"/>
+ <module name="org.jboss.threads"/>
+ <module name="org.jboss.modules"/>
+ <module name="org.jboss.msc"/>
+ <module name="org.jboss.vfs"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.common-core" />
+ <module name="org.jboss.ws.api" />
+ <module name="org.jboss.ws.common" services="import" />
+ <module name="org.jboss.ws.spi" />
+ <module name="org.picketbox" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/as/webservices/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsconsume">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSConsume"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsconsume/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsprovide">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSProvide"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly800/org/jboss/ws/tools/wsprovide/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.3" name="org.jboss.as.webservices">
+ <properties>
+ <property name="jboss.api" value="private"/>
+ </properties>
+
+ <exports>
+ <exclude path="org/jboss/as/webservices/logging"/>
+ </exports>
+
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api"/>
+ <module name="javax.api"/>
+ <module name="javax.ejb.api"/>
+ <module name="javax.jws.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.xml.ws.api"/>
+ <module name="org.jboss.ejb3"/>
+ <module name="org.jboss.invocation"/>
+ <module name="org.jboss.jandex"/>
+ <module name="org.jboss.metadata.common"/>
+ <module name="org.jboss.metadata.web"/>
+ <module name="org.jboss.metadata.ear"/>
+ <module name="org.jboss.metadata.ejb"/>
+ <module name="org.jboss.staxmapper"/>
+ <module name="org.jboss.as.controller"/>
+ <module name="org.jboss.as.ejb3"/>
+ <module name="org.jboss.as.server"/>
+ <module name="org.jboss.as.ee"/>
+ <module name="org.jboss.as.naming"/>
+ <module name="org.jboss.as.network"/>
+ <module name="org.jboss.as.security"/>
+ <module name="org.wildfly.security.manager"/>
+ <module name="org.jboss.as.web-common"/>
+ <module name="org.jboss.threads"/>
+ <module name="org.jboss.modules"/>
+ <module name="org.jboss.msc"/>
+ <module name="org.jboss.vfs"/>
+ <module name="org.jboss.logging"/>
+ <module name="org.jboss.common-core" />
+ <module name="org.jboss.ws.api" />
+ <module name="org.jboss.ws.common" services="import" />
+ <module name="org.jboss.ws.spi" />
+ <module name="org.picketbox" />
+ <module name="org.wildfly.extension.undertow" />
+ </dependencies>
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/as/webservices/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsconsume">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ <property name="jboss.require-java-version" value="1.7"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSConsume"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsconsume/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Added: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/module.xml
===================================================================
--- stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/module.xml (rev 0)
+++ stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/module.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.1" name="org.jboss.ws.tools.wsprovide">
+
+ <properties>
+ <property name="jboss.api" value="private"/>
+ <property name="jboss.require-java-version" value="1.7"/>
+ </properties>
+
+ <main-class name="org.jboss.ws.tools.cmd.WSProvide"/>
+
+ <dependencies>
+ <module name="org.jboss.logmanager" services="import"/>
+ <module name="org.jboss.ws.tools.common"/>
+ </dependencies>
+
+</module>
Property changes on: stack/cxf/branches/modules/modules/jboss-modules/src/main/resources/wildfly900/org/jboss/ws/tools/wsprovide/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/xml
Added: svn:keywords
+ Rev Date
Added: svn:eol-style
+ native
Modified: stack/cxf/branches/modules/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/modules/modules/testsuite/pom.xml 2014-12-12 08:49:08 UTC (rev 19138)
+++ stack/cxf/branches/modules/modules/testsuite/pom.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -33,6 +33,8 @@
<log4j.version>1.2.14</log4j.version>
<remote.port>4447</remote.port>
<remote.protocol>remote</remote.protocol>
+ <jboss.home>../../jboss-modules/target/wildfly-${wildfly900.version}</jboss.home>
+ <module.path>${jboss.home}/modules</module.path>
</properties>
<!-- Modules -->
@@ -127,6 +129,58 @@
<version>${org.slf4j.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.wildfly</groupId>
+ <artifactId>wildfly-webservices-tests-integration</artifactId>
+ <version>${wildfly900.version}</version>
+ </dependency>
+ <!-- Arquillian container integration -->
+ <dependency>
+ <groupId>org.wildfly.arquillian</groupId>
+ <artifactId>wildfly-arquillian-container-managed</artifactId>
+ <version>1.0.0.Alpha2</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jboss.slf4j</groupId>
+ <artifactId>slf4j-jboss-logmanager</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.arquillian.protocol</groupId>
+ <artifactId>arquillian-protocol-servlet</artifactId>
+ <version>${arquillian.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- LittleProxy depencency declared in this profile as other profiles require different exclusions -->
+ <dependency>
+ <groupId>org.littleshoot</groupId>
+ <artifactId>littleproxy</artifactId>
+ <version>${org.littleshoot.littleproxy.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache-core</artifactId>
+ </exclusion>
+ <!-- Let the container messaging subsystem control the Netty dependency version -->
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-all</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+
+
</dependencies>
<!-- Build -->
@@ -277,6 +331,10 @@
</includes>
<systemProperties>
<property>
+ <name>module.path</name>
+ <value>${module.path}</value>
+ </property>
+ <property>
<name>jboss.bind.address</name>
<value>${jboss.bind.address}</value>
</property>
@@ -503,53 +561,6 @@
<!-- Profiles -->
<profiles>
-
-
- <!--
- Name: download
- Descr: Download WildFly
- -->
- <profile>
- <id>download</id>
- <activation>
- <property>
- <name>!server.home</name>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack</id>
- <phase>package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.ws.cxf</groupId>
- <artifactId>jbossws-cxf-dist</artifactId>
- <classifier>test-server</classifier>
- <version>${project.version}</version>
- <type>zip</type>
- <overWrite>false</overWrite>
- <outputDirectory>${project.build.directory}/test-server</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <properties>
- <jboss.home>${project.build.directory}/test-server/jbossws-cxf-dist-${project.version}/wildfly-${jboss.version}</jboss.home>
- </properties>
- </profile>
-
<!--
Name: debug
Descr: Enable remote debuging for tests
@@ -649,6 +660,9 @@
-->
<profile>
<id>spring</id>
+ <properties>
+ <module.path>${jboss.home}/modules${path.separator}../../jboss-modules/target/spring-modules</module.path>
+ </properties>
<modules>
<module>cxf-spring-tests</module>
</modules>
@@ -893,56 +907,7 @@
<remote.protocol>http-remoting</remote.protocol>
</properties>
<dependencies>
- <dependency>
- <groupId>org.wildfly</groupId>
- <artifactId>wildfly-webservices-tests-integration</artifactId>
- <version>${jboss.version}</version>
- </dependency>
- <!-- Arquillian container integration -->
- <dependency>
- <groupId>org.wildfly.arquillian</groupId>
- <artifactId>wildfly-arquillian-container-managed</artifactId>
- <version>1.0.0.Alpha2</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.jboss.slf4j</groupId>
- <artifactId>slf4j-jboss-logmanager</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.jboss.arquillian.protocol</groupId>
- <artifactId>arquillian-protocol-servlet</artifactId>
- <version>${arquillian.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- LittleProxy depencency declared in this profile as other profiles require different exclusions -->
- <dependency>
- <groupId>org.littleshoot</groupId>
- <artifactId>littleproxy</artifactId>
- <version>${org.littleshoot.littleproxy.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- </exclusion>
- <exclusion>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache-core</artifactId>
- </exclusion>
- <!-- Let the container messaging subsystem control the Netty dependency version -->
- <exclusion>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
+ </dependencies>
<build>
<plugins>
<plugin>
Modified: stack/cxf/branches/modules/pom.xml
===================================================================
--- stack/cxf/branches/modules/pom.xml 2014-12-12 08:49:08 UTC (rev 19138)
+++ stack/cxf/branches/modules/pom.xml 2014-12-12 09:33:14 UTC (rev 19139)
@@ -56,6 +56,7 @@
<module>modules/endorsed</module>
<module>modules/resources</module>
<module>modules/addons</module>
+ <module>modules/jboss-modules</module>
<module>modules/test-utils</module>
</modules>
11 years
JBossWS SVN: r19138 - stack/cxf/branches.
by jbossws-commits@lists.jboss.org
Author: jim.ma
Date: 2014-12-12 03:49:08 -0500 (Fri, 12 Dec 2014)
New Revision: 19138
Added:
stack/cxf/branches/modules/
Log:
Create workspace
11 years
JBossWS SVN: r19137 - stack/cxf/branches/arquillian.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-11 11:18:34 -0500 (Thu, 11 Dec 2014)
New Revision: 19137
Added:
stack/cxf/branches/arquillian/README
Modified:
stack/cxf/branches/arquillian/pom.xml
Log:
Adding README and arranging profiles a bit better
Added: stack/cxf/branches/arquillian/README
===================================================================
--- stack/cxf/branches/arquillian/README (rev 0)
+++ stack/cxf/branches/arquillian/README 2014-12-11 16:18:34 UTC (rev 19137)
@@ -0,0 +1,32 @@
+ Building and running the testsuite
+------------------------------------
+
+The build follows the usual Maven flow; a wilflyXYZ profile has to be specified to tell the project which target container to use for integration tests; if no wildflyXYZ profile is specified, the integration tests are skipped.
+
+> mvn -PwildflyXYZ integration-test
+
+The -Dserver.home=/foo/bar option can be used to run the testsuite against a given local server instance; the server does not need to be already running, as the build will create various standalone server configurations and start multiple instances.
+
+The 'fast' profile can also be used to run tests concurrently.
+
+
+ Updating WS stack
+-------------------
+
+In some cases it might be needed to build the ws stack and install it on a specified server instance without running the integration testsuite; this is achieved as follows:
+
+> mvn -PwildflyXYZ -Dserver.home=/foo/bar package
+
+If a server.home property is not provided, the build creates a zip archive with a vanilla WildFly server patched with the current WS stack:
+
+> mvn -PwildflyXYZ package
+
+the zip file path is modules/dist/target/jbossws-cxf-dist-${project.version}-test-server.zip
+
+
+ Cleaning up
+-------------
+
+The project is cleaned up as follows:
+
+> mvn -Pdist,testsuite clean
Property changes on: stack/cxf/branches/arquillian/README
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: svn:eol-style
+ native
Modified: stack/cxf/branches/arquillian/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/pom.xml 2014-12-11 15:08:06 UTC (rev 19136)
+++ stack/cxf/branches/arquillian/pom.xml 2014-12-11 16:18:34 UTC (rev 19137)
@@ -53,12 +53,10 @@
<module>modules/jaspi</module>
<module>modules/server</module>
<module>modules/client</module>
- <module>modules/dist</module>
<module>modules/endorsed</module>
<module>modules/resources</module>
<module>modules/addons</module>
<module>modules/test-utils</module>
- <module>modules/testsuite</module>
</modules>
<!-- Properties -->
@@ -1392,6 +1390,10 @@
<jboss.home>${server.home}</jboss.home>
<jboss.version>${wildfly800.version}</jboss.version>
</properties>
+ <modules>
+ <module>modules/dist</module>
+ <module>modules/testsuite</module>
+ </modules>
</profile>
<!--
@@ -1405,6 +1407,10 @@
<jboss.home>${server.home}</jboss.home>
<jboss.version>${wildfly810.version}</jboss.version>
</properties>
+ <modules>
+ <module>modules/dist</module>
+ <module>modules/testsuite</module>
+ </modules>
</profile>
<!--
@@ -1418,31 +1424,26 @@
<jboss.home>${server.home}</jboss.home>
<jboss.version>${wildfly900.version}</jboss.version>
</properties>
+ <modules>
+ <module>modules/dist</module>
+ <module>modules/testsuite</module>
+ </modules>
</profile>
- <!--
- Name: smoketest
- Descr: Executes the smoke tests
- -->
<profile>
- <id>smoketest</id>
+ <id>dist</id>
<modules>
- <module>modules/testsuite</module>
+ <module>modules/dist</module>
</modules>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <includes>
- <include>org/jboss/test/ws/jaxws/samples/**/*TestCase.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
</profile>
-
+
+ <profile>
+ <id>testsuite</id>
+ <modules>
+ <module>modules/testsuite</module>
+ </modules>
+ </profile>
+
<!-- [JBWS-3666] -->
<profile>
<id>eclipse-m2e</id>
11 years
JBossWS SVN: r19136 - in stack/cxf/branches/arquillian: modules/dist and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-11 10:08:06 -0500 (Thu, 11 Dec 2014)
New Revision: 19136
Modified:
stack/cxf/branches/arquillian/modules/dist/pom.xml
stack/cxf/branches/arquillian/modules/testsuite/pom.xml
stack/cxf/branches/arquillian/pom.xml
Log:
No need anymore for -Dno-testsuite when installing/deploying artifacts
Modified: stack/cxf/branches/arquillian/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-11 14:35:54 UTC (rev 19135)
+++ stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-11 15:08:06 UTC (rev 19136)
@@ -196,6 +196,20 @@
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
Modified: stack/cxf/branches/arquillian/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/testsuite/pom.xml 2014-12-11 14:35:54 UTC (rev 19135)
+++ stack/cxf/branches/arquillian/modules/testsuite/pom.xml 2014-12-11 15:08:06 UTC (rev 19136)
@@ -484,6 +484,20 @@
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
Modified: stack/cxf/branches/arquillian/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/pom.xml 2014-12-11 14:35:54 UTC (rev 19135)
+++ stack/cxf/branches/arquillian/pom.xml 2014-12-11 15:08:06 UTC (rev 19136)
@@ -53,10 +53,12 @@
<module>modules/jaspi</module>
<module>modules/server</module>
<module>modules/client</module>
+ <module>modules/dist</module>
<module>modules/endorsed</module>
<module>modules/resources</module>
<module>modules/addons</module>
<module>modules/test-utils</module>
+ <module>modules/testsuite</module>
</modules>
<!-- Properties -->
@@ -1293,6 +1295,16 @@
<version>1.0.2.Final</version>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8.2</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <version>2.5.2</version>
+ </plugin>
+ <plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.1.2</version>
@@ -1431,23 +1443,6 @@
</build>
</profile>
- <!--
- Name: testsuite
- Descr: Executes the testsuite
- -->
- <profile>
- <id>testsuite</id>
- <activation>
- <property>
- <name>!no-testsuite</name>
- </property>
- </activation>
- <modules>
- <module>modules/dist</module>
- <module>modules/testsuite</module>
- </modules>
- </profile>
-
<!-- [JBWS-3666] -->
<profile>
<id>eclipse-m2e</id>
11 years
JBossWS SVN: r19135 - in stack/cxf/branches/arquillian: modules/resources/src/main/resources/modules/wildfly900/org/jboss/as/webservices/main and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-11 09:35:54 -0500 (Thu, 11 Dec 2014)
New Revision: 19135
Modified:
stack/cxf/branches/arquillian/
stack/cxf/branches/arquillian/modules/resources/src/main/resources/modules/wildfly900/org/jboss/as/webservices/main/module.xml
Log:
svn merge -r 19125:19126 https://svn.jboss.org/repos/jbossws/stack/cxf/trunk .
Property changes on: stack/cxf/branches/arquillian
___________________________________________________________________
Modified: svn:mergeinfo
- /stack/cxf/branches/asoldano:14032-14050,14068
/stack/cxf/branches/jaspi:18054-18409
/stack/cxf/branches/ropalka:16301-16305,16966-17008
/stack/cxf/branches/ropalka_JBWS-3550:16747-16757
+ /stack/cxf/branches/asoldano:14032-14050,14068
/stack/cxf/branches/jaspi:18054-18409
/stack/cxf/branches/ropalka:16301-16305,16966-17008
/stack/cxf/branches/ropalka_JBWS-3550:16747-16757
/stack/cxf/trunk:19126
Modified: stack/cxf/branches/arquillian/modules/resources/src/main/resources/modules/wildfly900/org/jboss/as/webservices/main/module.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/resources/src/main/resources/modules/wildfly900/org/jboss/as/webservices/main/module.xml 2014-12-11 14:34:45 UTC (rev 19134)
+++ stack/cxf/branches/arquillian/modules/resources/src/main/resources/modules/wildfly900/org/jboss/as/webservices/main/module.xml 2014-12-11 14:35:54 UTC (rev 19135)
@@ -55,6 +55,7 @@
<module name="org.jboss.as.server"/>
<module name="org.jboss.as.ee"/>
<module name="org.jboss.as.naming"/>
+ <module name="org.jboss.as.network"/>
<module name="org.jboss.as.security"/>
<module name="org.wildfly.security.manager"/>
<module name="org.jboss.as.web-common"/>
@@ -68,5 +69,6 @@
<module name="org.jboss.ws.common" services="import" />
<module name="org.jboss.ws.spi" />
<module name="org.picketbox" />
+ <module name="org.wildfly.extension.undertow" />
</dependencies>
</module>
11 years
JBossWS SVN: r19134 - in stack/cxf/branches/arquillian: modules/dist and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: asoldano
Date: 2014-12-11 09:34:45 -0500 (Thu, 11 Dec 2014)
New Revision: 19134
Modified:
stack/cxf/branches/arquillian/modules/dist/pom.xml
stack/cxf/branches/arquillian/pom.xml
Log:
Automatically enable dist profile, unless the testsuite is disabled
Modified: stack/cxf/branches/arquillian/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-09 15:25:49 UTC (rev 19133)
+++ stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-11 14:34:45 UTC (rev 19134)
@@ -208,13 +208,7 @@
<profile>
<id>download</id>
<activation>
-<!-- <file>
- <missing>${jboss.home}/bin/standalone.sh</missing>
- </file>
<property>
- <name>!wildfly900.home</name>
- </property> -->
- <property>
<name>!server.home</name>
</property>
</activation>
@@ -244,6 +238,26 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>dist-test-server</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <appendAssemblyId>true</appendAssemblyId>
+ <descriptors>
+ <descriptor>src/main/scripts/assembly-test-server.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
<properties>
@@ -287,43 +301,6 @@
</profile>
<!--
- Name: zip-test-server
- Descr: Deploy stack on WildFly instance
- -->
- <profile>
- <id>zip-test-server</id>
- <activation>
- <property>
- <name>!no-zip-test-server</name>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>dist-test-server</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <appendAssemblyId>true</appendAssemblyId>
- <descriptors>
- <descriptor>src/main/scripts/assembly-test-server.xml</descriptor>
- </descriptors>
- <tarLongFileMode>gnu</tarLongFileMode>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
-
- <!--
Name: bindist
Descr: Build the binary distribution
-->
Modified: stack/cxf/branches/arquillian/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/pom.xml 2014-12-09 15:25:49 UTC (rev 19133)
+++ stack/cxf/branches/arquillian/pom.xml 2014-12-11 14:34:45 UTC (rev 19134)
@@ -1369,13 +1369,6 @@
<!-- Profiles -->
<profiles>
- <profile>
- <id>dist</id>
- <modules>
- <module>modules/dist</module>
- </modules>
- </profile>
-
<!--
Name: wildfly800
Descr: WildFly-8.0.0 specific options
@@ -1397,25 +1390,10 @@
<id>wildfly810</id>
<properties>
<jbossws.integration.target>wildfly810</jbossws.integration.target>
- <jboss.home>${wildfly810.home}</jboss.home>
+ <jboss.home>${server.home}</jboss.home>
<jboss.version>${wildfly810.version}</jboss.version>
</properties>
</profile>
-<!-- <profile>
- <id>wildfly810-download</id>
- <activation>
- <file>
- <missing>${jboss.home}/bin/standalone.sh</missing>
- </file>
- <property>
- <name>jbossws.integration.target</name>
- <value>wildfly810</value>
- </property>
- </activation>
- <properties>
- <wildfly810.home>${project.build.directory}/wildfly-${jboss.version}</wildfly810.home>
- </properties>
- </profile> -->
<!--
Name: wildfly900
@@ -1425,7 +1403,7 @@
<id>wildfly900</id>
<properties>
<jbossws.integration.target>wildfly900</jbossws.integration.target>
- <jboss.home>${wildfly900.home}</jboss.home>
+ <jboss.home>${server.home}</jboss.home>
<jboss.version>${wildfly900.version}</jboss.version>
</properties>
</profile>
@@ -1465,6 +1443,7 @@
</property>
</activation>
<modules>
+ <module>modules/dist</module>
<module>modules/testsuite</module>
</modules>
</profile>
11 years