JBossWS testsuite reorganization
by Alessio Soldano
Folks,
with current development on jbossws trunk aimed at version 5, I believe
it's time consider rethinking the testsuite a bit.
Current status
--------------------
Historically, we've been running the integration tests against a JBoss
AS container that has to be started before the testsuite. The target
container is a vanilla distribution that suits with most of the tests,
except for few ones requiring a https connector or a specific security
domain to be available. Implementations of the
org.jboss.wsf.spi.deployer.Deployer interface are available for each
target container and allow deploying test archives as well as setting
security domains / https connector by internally relying on the
container management API.
Different maven profiles trigger different implementations of Deployer
(due to different artifact dependencies / classpath), allowing running
the testsuite the same way against different target containers. When it
comes to continuous integration, the idea is that a QA job first updates
a target container with the current jbossws libraries, then it starts
the container and runs the jbossws testsuite against it.
Issues / reasons for changing
---------------------------------------
The current approach is working pretty much fine, but suffers from some
limitations:
* it needs a container to be already running when the integration test
is triggered; it would be great if we could have the container started /
stopped by the test itself
* we're limited to running the testsuite against a predefined container
profile (standalone.xml, standalone-full.xml ): while most of the tests
makes sense when run against standalone.xml profile (because the
webservices subsystem is on in it), we have some tests requiring
subsystems available on different profiles (for instance, the messaging
subsystem which is in standalone-full.xml or the xts subsystem which is
in standalone-xts.xml). Currently we run the testsuite in Spring mode
against standalone-full.xml, basically because till CXF 2.7.x the
SOAP-over-JMS implementation has been available with Spring only. That's
not the case anymore, on CXF 3.0.0, so we'd likely have to test it in
both spring and non-spring mode, but that needs the messaging subsystem
which is not in standalone.xml
* we have few tests (but might have more in future) that actually
require further additional changes to the server; that includes adding
users, messaging queues, setting server side system properties at boot,
... The only way to achieve that atm is to have the QA job run a CLI
script to modify the server or set a system property on command line
when starting the server jvm
* we have tests affecting the server management model, for instance
changing the way the webservices subsystem model rewrites wsdl
soap:address attributes; that makes it impossible to run those tests at
the same time of any other tests
Proposals / idea
---------------------
I'm listening to proposals to revisit the way the testsuite is run and
better address the point above.
Something I've been thinking about is relying on Arquillian, similarly
to what the WFLY testsuite does. What's not trivial is the fact that we
still need to have different version of the Arquillian SPI
implementation (that is, different WFLY / EAP versions) used depending
on a maven profile specified when running the testsuite; moreover we
also need to be able to run against the result of building the latest
WFLY master (iow, not a released target for which a
wildfly-arquillian-container-xyz is available on the repository). We
could have custom server profile files (standalone-abc.xml) in the
jbossws sources for the supported containers to be used for starting
specific versions of the containers through Arquillian. The integration
tests could be split into groups meant to run against the various
different profiles of the selected target container. Pretty much
anything we need to customize on the server that can't be done using the
Deployer approach can actually be done through a proper profile file (I
would still keep the Deployer approach when working to limit the number
of profile files to maintain, as there's a lot of stuff in there).
Actually, we could even think about having a prepare phase before the
actual testsuite that runs given CLI scripts to obtain the desired
profile configuration.
Next steps
---------------
Please provide feedback / ideas. Then we need a plan and eventually
jiras created.
Cheers
Alessio
--
Alessio Soldano
Web Service Lead, JBoss
9 years, 11 months
Fwd: [jbossws-commits] JBossWS SVN: r19139 - in stack/cxf/branches/modules: modules and 100 other directories.
by Alessio Soldano
Hi Jim,
I've had a look at your branch here. As we said on IRC, the main
difference is with the way the stack deploy is performed. You're using
an approach similar to what the WFLY build does, while I've re-cycled
the ant based mechanism we've been using so far (removing a bunch of
stuff that's not needed anymore, though).
I like the fact your approach is very clean and slim. On the other side,
our "old" deploy mechanism has the advantage of having been tested for
years and fitting perfectly our needs. An example is the undeploy phase.
Basically, our old scripts first undeploys the stack from the server and
the deploys the current/new one; that's not exactly the same as
unzipping the new modules on top of the existing ones with overwrite
enabled. The first time a module is removed or renamed, we get in
troubles (the build for JBossWS X is expected to be able to undeploy
JBossWS X-k from a supported target container). We came to the current
undeploy/deploy solutions after a long discussion back in 2007/2008, I
think it still has advantages.
Cheers
Alessio
-------- Original Message --------
Subject: [jbossws-commits] JBossWS SVN: r19139 - in
stack/cxf/branches/modules: modules and 100 other directories.
Date: Fri, 12 Dec 2014 04:33:15 -0500
From: jbossws-commits(a)lists.jboss.org
Reply-To: jbossws-commits(a)lists.jboss.org
To: jbossws-commits(a)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>
_______________________________________________
jbossws-commits mailing list
jbossws-commits(a)lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jbossws-commits
10 years