Author: heiko.braun(a)jboss.com
Date: 2008-04-16 14:31:02 -0400 (Wed, 16 Apr 2008)
New Revision: 6458
Modified:
stack/cxf/trunk/ant-import/build-prepare-deploy.xml
stack/cxf/trunk/ant-import/build-setup.xml
stack/cxf/trunk/ant-import/build-thirdparty.xml
stack/cxf/trunk/ant-import/jbossws-deploy-macros.xml
stack/cxf/trunk/build.xml
stack/cxf/trunk/cxf-trunk.iml
stack/cxf/trunk/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java
stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
stack/cxf/trunk/version.properties
Log:
Update to SPI 3.0-SNAPSHOT
Modified: stack/cxf/trunk/ant-import/build-prepare-deploy.xml
===================================================================
--- stack/cxf/trunk/ant-import/build-prepare-deploy.xml 2008-04-16 17:09:47 UTC (rev
6457)
+++ stack/cxf/trunk/ant-import/build-prepare-deploy.xml 2008-04-16 18:31:02 UTC (rev
6458)
@@ -31,6 +31,9 @@
<patternset refid="jbossws.service.lib.patternset"/>
<exclude name="cxf-${cxf.version}.jar"/>
<include name="juddi-service.sar"/>
+ <include name="jbossws-jboss42.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ <include name="jbossws-jboss50-container.jar"/>
</fileset>
<fileset dir="${cxf.output.lib.dir}">
<patternset refid="jbossws.client.patternset"/>
@@ -47,6 +50,7 @@
<include name="jbossws-cxf50-beans.xml"/>
<include name="jbossws-jboss42.sar/**"/>
<include name="jbossws-cxf.sar/**"/>
+ <include name="jbossws-deployer-beans.xml"/>
</fileset>
</copy>
</target>
Modified: stack/cxf/trunk/ant-import/build-setup.xml
===================================================================
--- stack/cxf/trunk/ant-import/build-setup.xml 2008-04-16 17:09:47 UTC (rev 6457)
+++ stack/cxf/trunk/ant-import/build-setup.xml 2008-04-16 18:31:02 UTC (rev 6458)
@@ -61,8 +61,28 @@
<available property="jboss423.available"
file="${jboss423.available.file}"/>
<available property="jboss500.available"
file="${jboss500.available.file}"/>
<available property="jboss501.available"
file="${jboss501.available.file}"/>
-
- <condition property="jbossws.integration.jboss42"
value="true">
+
+ <condition property="jbossws.integration.jboss421"
value="true">
+ <equals arg1="${jbossws.integration.target}"
arg2="jboss421"/>
+ </condition>
+
+ <condition property="jbossws.integration.jboss422"
value="true">
+ <equals arg1="${jbossws.integration.target}"
arg2="jboss422"/>
+ </condition>
+
+ <condition property="jbossws.integration.jboss423"
value="true">
+ <equals arg1="${jbossws.integration.target}"
arg2="jboss423"/>
+ </condition>
+
+ <condition property="jbossws.integration.jboss500"
value="true">
+ <equals arg1="${jbossws.integration.target}"
arg2="jboss500"/>
+ </condition>
+
+ <condition property="jbossws.integration.jboss501"
value="true">
+ <equals arg1="${jbossws.integration.target}"
arg2="jboss501"/>
+ </condition>
+
+ <condition property="jbossws.integration.jboss42"
value="true">
<or>
<equals arg1="${jbossws.integration.target}"
arg2="jboss422"/>
<equals arg1="${jbossws.integration.target}"
arg2="jboss423"/>
Modified: stack/cxf/trunk/ant-import/build-thirdparty.xml
===================================================================
--- stack/cxf/trunk/ant-import/build-thirdparty.xml 2008-04-16 17:09:47 UTC (rev 6457)
+++ stack/cxf/trunk/ant-import/build-thirdparty.xml 2008-04-16 18:31:02 UTC (rev 6458)
@@ -49,18 +49,40 @@
<!--
thirdpartry-get
-->
- <target name="thirdparty-get"
depends="thirdparty-delete,cxf-copy-jars" if="force.thirdparty.get"
- description="Gets the thirdparty libraries">
+ <target name="get422-jars"
if="jbossws.integration.jboss422">
+ <mkdir dir="${thirdparty.dir}"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss422}/lib/jbossws-jboss42.jar"
dest="${thirdparty.dir}/jbossws-jboss42.jar" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss422}/lib/jbossws-jboss42-src.zip"
dest="${thirdparty.dir}/jbossws-jboss42-src.zip" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss422}/lib/jbossws-jboss42-resources.zip"
dest="${thirdparty.dir}/jbossws-jboss42-resources.zip"
usetimestamp="true" verbose="true"/>
+ </target>
+
+ <target name="get423-jars"
if="jbossws.integration.jboss423">
+ <mkdir dir="${thirdparty.dir}"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss423}/lib/jbossws-jboss42.jar"
dest="${thirdparty.dir}/jbossws-jboss42.jar" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss423}/lib/jbossws-jboss42-src.zip"
dest="${thirdparty.dir}/jbossws-jboss42-src.zip" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss423}/lib/jbossws-jboss42-resources.zip"
dest="${thirdparty.dir}/jbossws-jboss42-resources.zip"
usetimestamp="true" verbose="true"/>
+ </target>
+
+ <target name="get501-jars"
if="jbossws.integration.jboss501">
+ <mkdir dir="${thirdparty.dir}"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss50/${jbossws-jboss501}/lib/jbossws-jboss50.jar"
dest="${thirdparty.dir}/jbossws-jboss50.jar" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss50/${jbossws-jboss501}/lib/jbossws-jboss50-src.zip"
dest="${thirdparty.dir}/jbossws-jboss50-src.zip" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss50/${jbossws-jboss501}/lib/jbossws-jboss50-container.jar"
dest="${thirdparty.dir}/jbossws-jboss50-container.jar"
usetimestamp="true" verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-jboss50/${jbossws-jboss501}/lib/jbossws-jboss50-deployer-resources.zip"
dest="${thirdparty.dir}/jbossws-jboss50-deployer-resources.zip"
usetimestamp="true" verbose="true"/>
+ </target>
+
+ <target name="thirdparty-get"
depends="thirdparty-delete,cxf-copy-jars, get422-jars, get423-jars,
get501-jars"
+ if="force.thirdparty.get" description="Gets the thirdparty
libraries">
+
<mkdir dir="${thirdparty.dir}"/>
<get
src="${jboss.repository}/jboss/jbossws-common/${jbossws-common}/lib/jbossws-common.jar"
dest="${thirdparty.dir}/jbossws-common.jar" usetimestamp="true"
verbose="true"/>
<get
src="${jboss.repository}/jboss/jbossws-common/${jbossws-common}/lib/jbossws-common-src.zip"
dest="${thirdparty.dir}/jbossws-common-src.zip" usetimestamp="true"
verbose="true"/>
<get
src="${jboss.repository}/jboss/jbossws-framework/${jbossws-framework}/lib/jbossws-framework.jar"
dest="${thirdparty.dir}/jbossws-framework.jar" usetimestamp="true"
verbose="true"/>
- <get
src="${jboss.repository}/jboss/jbossws-framework/${jbossws-framework}/lib/jbossws-framework-src.zip"
dest="${thirdparty.dir}/jbossws-framework-src.zip" usetimestamp="true"
verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-framework/${jbossws-framework}/lib/jbossws-framework-src.jar"
dest="${thirdparty.dir}/jbossws-framework-src.zip" usetimestamp="true"
verbose="true"/>
<get
src="${jboss.repository}/jboss/jbossws-framework/${jbossws-framework}/lib/jbossws-framework-scripts.zip"
dest="${thirdparty.dir}/jbossws-framework-scripts.zip"
usetimestamp="true" verbose="true"/>
<get
src="${jboss.repository}/jboss/jbossws-spi/${jbossws-spi}/lib/jbossws-spi.jar"
dest="${thirdparty.dir}/jbossws-spi.jar" usetimestamp="true"
verbose="true"/>
- <get
src="${jboss.repository}/jboss/jbossws-spi/${jbossws-spi}/lib/jbossws-spi-src.zip"
dest="${thirdparty.dir}/jbossws-spi-src.zip" usetimestamp="true"
verbose="true"/>
- <get
src="${jboss.repository}/jboss/jbossws-jboss42/${jbossws-jboss42}/lib/jbossws-jboss42-resources.zip"
dest="${thirdparty.dir}/jbossws-jboss42-resources.zip"
usetimestamp="true" verbose="true"/>
+ <get
src="${jboss.repository}/jboss/jbossws-spi/${jbossws-spi}/lib/jbossws-spi-src.jar"
dest="${thirdparty.dir}/jbossws-spi-src.zip" usetimestamp="true"
verbose="true"/>
<get
src="${jboss.repository}/apache-xml-commons/${apache-xml-commons}/lib/resolver.jar"
dest="${thirdparty.dir}/resolver.jar" usetimestamp="true"
verbose="true"/>
<get src="${jboss.repository}/ibm-wsdl4j/${ibm-wsdl4j}/lib/wsdl4j.jar"
dest="${thirdparty.dir}/wsdl4j.jar" usetimestamp="true"
verbose="true"/>
Modified: stack/cxf/trunk/ant-import/jbossws-deploy-macros.xml
===================================================================
--- stack/cxf/trunk/ant-import/jbossws-deploy-macros.xml 2008-04-16 17:09:47 UTC (rev
6457)
+++ stack/cxf/trunk/ant-import/jbossws-deploy-macros.xml 2008-04-16 18:31:02 UTC (rev
6458)
@@ -137,6 +137,48 @@
</copy>
</sequential>
</macrodef>
+
+ <!-- ================================================================== -->
+ <!-- Deploy Deployers -->
+ <!-- ================================================================== -->
+
+ <macrodef name="macro-deploy-jbossws-deployers50">
+ <attribute name="thirdpartydir"/>
+ <attribute name="targetdir"/>
+ <sequential>
+ <mkdir dir="@{targetdir}"/>
+ <copy todir="@{targetdir}" flatten="true"
overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <include name="**/jbossws-common.jar"/>
+ <include name="**/jbossws-framework.jar"/>
+ <include name="**/jbossws-jboss50.jar"/>
+ </fileset>
+ </copy>
+ <copy todir="@{targetdir}/META-INF" flatten="true"
overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <include name="**/jbossws-deployer-beans.xml"/>
+ </fileset>
+ </copy>
+ </sequential>
+ </macrodef>
+
+ <!-- ================================================================== -->
+ <!-- Deploy Deploy -->
+ <!-- ================================================================== -->
+
+ <macrodef name="macro-deploy-jbossws-deploy50">
+ <attribute name="thirdpartydir"/>
+ <attribute name="targetdir"/>
+ <sequential>
+ <mkdir dir="@{targetdir}"/>
+ <copy todir="@{targetdir}" flatten="true"
overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <include name="**/jbossws-jboss50-container.jar"/>
+ </fileset>
+ </copy>
+ </sequential>
+ </macrodef>
+
<!-- ================================================================== -->
<!-- Deploy Lib Endorsed -->
@@ -171,6 +213,19 @@
</copy>
</sequential>
</macrodef>
+
+ <macrodef name="macro-deploy-jbossws-client42">
+ <attribute name="thirdpartydir"/>
+ <attribute name="targetdir"/>
+ <sequential>
+ <mkdir dir="@{targetdir}"/>
+ <copy todir="@{targetdir}" flatten="true"
overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <include name="**/jbossws-jboss42.jar"/>
+ </fileset>
+ </copy>
+ </sequential>
+ </macrodef>
<!-- ================================================================== -->
<!-- Deploy Server Lib -->
@@ -188,6 +243,20 @@
</copy>
</sequential>
</macrodef>
+
+ <macrodef name="macro-deploy-jbossws-server-lib42">
+ <attribute name="thirdpartydir"/>
+ <attribute name="targetdir"/>
+ <sequential>
+ <mkdir dir="@{targetdir}"/>
+ <copy todir="@{targetdir}" flatten="true"
overwrite="true">
+ <fileset dir="@{thirdpartydir}">
+ <include name="**/jbossws-jboss42.jar"/>
+ </fileset>
+ </copy>
+ </sequential>
+ </macrodef>
+
<!-- ================================================================== -->
<!-- Deploy JBossWS Service -->
@@ -268,13 +337,17 @@
<macro-deploy-jbossws-bin targetdir="${installserver}/../../bin"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-lib42 targetdir="${installserver}/../../lib"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-client targetdir="${installserver}/../../client"
thirdpartydir="${thirdpartydir}"/>
+ <macro-deploy-jbossws-client42 targetdir="${installserver}/../../client"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-server-lib targetdir="${installserver}/lib"
thirdpartydir="${thirdpartydir}"/>
+ <macro-deploy-jbossws-server-lib42 targetdir="${installserver}/lib"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-cxf42-sar
targetdir="${installserver}/deploy/jbossws.sar"
thirdpartydir="${thirdpartydir}" resourcesdir="${resourcesdir}"/>
</target>
<target name="deploy-jbossws-cxf50"
depends="deploy-jbossws-endorsed">
<macro-deploy-jbossws-bin targetdir="${installserver}/../../bin"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-lib50 targetdir="${installserver}/../../lib"
thirdpartydir="${thirdpartydir}"/>
+ <macro-deploy-jbossws-deployers50
targetdir="${installserver}/deployers/jbossws.deployer/"
thirdpartydir="${thirdpartydir}"/>
+ <macro-deploy-jbossws-deploy50 targetdir="${installserver}/deploy"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-client targetdir="${installserver}/../../client"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-server-lib targetdir="${installserver}/lib"
thirdpartydir="${thirdpartydir}"/>
<macro-deploy-jbossws-cxf50-sar
targetdir="${installserver}/deploy/jbossws.sar"
thirdpartydir="${thirdpartydir}"/>
Modified: stack/cxf/trunk/build.xml
===================================================================
--- stack/cxf/trunk/build.xml 2008-04-16 17:09:47 UTC (rev 6457)
+++ stack/cxf/trunk/build.xml 2008-04-16 18:31:02 UTC (rev 6458)
@@ -100,33 +100,40 @@
</target>
<!-- Compile resource files -->
- <target name="compile-resources" depends="init">
+ <target name="compile42-resources"
if="jbossws.integration.jboss42">
+ <mkdir dir="${cxf.output.resources.dir}"/>
+ <unzip dest="${cxf.output.dir}/resources"
src="${thirdparty.dir}/jbossws-jboss42-resources.zip"/>
+ <concat
destfile="${cxf.output.resources.dir}/jbossws-cxf42-beans.xml">
+ <header trimleading="yes">
+ <deployment
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
xmlns="urn:jboss:bean-deployer">
+ </header>
+ <fileset file="${cxf.resources.dir}/jbossws-cxf-config.xml"/>
+ <fileset
file="${cxf.output.resources.dir}/jbossws-jboss42-config.xml"/>
+ <footer trimleading="yes">
+ </deployment>
+ </footer>
+ </concat>
+
+ </target>
+ <target name="compile50-resources"
if="jbossws.integration.jboss50">
+ <mkdir dir="${cxf.output.resources.dir}"/>
+ <unzip src="${thirdparty.dir}/jbossws-jboss50-deployer-resources.zip"
dest="${cxf.output.resources.dir}"/>
+
+ <concat
destfile="${cxf.output.resources.dir}/jbossws-cxf50-beans.xml">
+ <header trimleading="yes">
+ <deployment xmlns="urn:jboss:bean-deployer:2.0">
+ </header>
+ <fileset file="${cxf.resources.dir}/jbossws-cxf-config.xml"/>
+ <footer trimleading="yes">
+ </deployment>
+ </footer>
+ </concat>
+
+ </target>
+
+ <target name="compile-resources" depends="init, compile42-resources,
compile50-resources">
- <!-- Concat jbossws-cxf50-beans.xml -->
<mkdir dir="${cxf.output.resources.dir}"/>
- <concat
destfile="${cxf.output.resources.dir}/jbossws-cxf50-beans.xml">
- <header trimleading="yes">
- <deployment xmlns="urn:jboss:bean-deployer:2.0">
- </header>
- <fileset file="${cxf.resources.dir}/jbossws-cxf-config.xml"/>
- <footer trimleading="yes">
- </deployment>
- </footer>
- </concat>
-
- <!-- Concat jboss-beans.xml -->
- <unzip dest="${cxf.output.dir}/resources"
src="${thirdparty.dir}/jbossws-jboss42-resources.zip"/>
- <concat
destfile="${cxf.output.resources.dir}/jbossws-cxf42-beans.xml">
- <header trimleading="yes">
- <deployment
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
xmlns="urn:jboss:bean-deployer">
- </header>
- <fileset file="${cxf.resources.dir}/jbossws-cxf-config.xml"/>
- <fileset
file="${cxf.output.resources.dir}/jbossws-jboss42-config.xml"/>
- <footer trimleading="yes">
- </deployment>
- </footer>
- </concat>
-
<copy todir="${cxf.output.resources.dir}">
<fileset dir="${cxf.resources.dir}">
<include name="jbossws-cxf.sar/**"/>
Modified: stack/cxf/trunk/cxf-trunk.iml
===================================================================
--- stack/cxf/trunk/cxf-trunk.iml 2008-04-16 17:09:47 UTC (rev 6457)
+++ stack/cxf/trunk/cxf-trunk.iml 2008-04-16 18:31:02 UTC (rev 6458)
@@ -5,11 +5,1074 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java"
isTestSource="false" />
- <sourceFolder url="file://$MODULE_DIR$/src/test-framework/java"
isTestSource="false" />
- <sourceFolder url="file://$MODULE_DIR$/src/test/java"
isTestSource="false" />
+ <sourceFolder url="file://$MODULE_DIR$/src/test/java"
isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.jra:jra:jar:1.0-alpha-4:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/jra/jra/1.0-alpha-4/jra-1.0-alpha-4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: log4j:log4j:jar:1.2.14:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-plugin-api:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-plugin-api/2.0.5/maven-plugin-api-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-context:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-context/2.0.6/spring-context-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: stax:stax-api:jar:1.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.woodstox:wstx-asl:jar:3.2.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/woodstox/wstx-asl/3.2.1/wstx-asl-3.2.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.mortbay.jetty:jetty:jar:6.1.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/mortbay/jetty/jetty/6.1.5/jetty-6.1.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: mx4j:mx4j-remote:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/mx4j/mx4j-remote/3.0.1/mx4j-remote-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.plexus:plexus-utils:jar:1.4.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: rhino:js:jar:1.6R5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/rhino/js/1.6R5/js-1.6R5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: mx4j:mx4j:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/mx4j/mx4j/3.0.1/mx4j-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xml-apis:xml-apis:jar:1.3.04:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-model:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-model/2.0.5/maven-model-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: commons-pool:commons-pool:jar:1.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-pool/commons-pool/1.2/commons-pool-1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.xbean:xbean-spring:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/xbean/xbean-spring/3.0.1/xbean-spring-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: jtidy:jtidy:jar:4aug2000r7-dev:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/jtidy/jtidy/4aug2000r7-dev/jtidy-4aug2000r7-dev.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.mortbay.jetty:jetty-util:jar:6.1.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/mortbay/jetty/jetty-util/6.1.5/jetty-util-6.1.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-plugin-api:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
commons-httpclient:commons-httpclient:jar:3.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-jmx:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-jmx/2.0.6/spring-jmx-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.easymock:easymockclassextension:jar:2.2.2:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/easymock/easymockclassextension/2.2.2/easymockclassextension-2.2.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: commons-codec:commons-codec:jar:1.2:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.codehaus.jra:jra:jar:1.0-alpha-3:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/jra/jra/1.0-alpha-3/jra-1.0-alpha-3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.neethi:neethi:jar:2.0.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/neethi/neethi/2.0.2/neethi-2.0.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.apache.derby:derby:jar:10.2.2.0:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/derby/derby/10.2.2.0/derby-10.2.2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-j2ee-connector_1.5_spec:jar:1.1:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-connector_1.5_spec/1.1/geronimo-j2ee-connector_1.5_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-beans:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-beans/2.0.6/spring-beans-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.modules:geronimo-connector:jar:1.2-beta:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/modules/geronimo-connector/1.2-beta/geronimo-connector-1.2-beta.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: wss4j:wss4j:jar:1.5.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/wss4j/wss4j/1.5.1/wss4j-1.5.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xalan:xalan:jar:2.7.0:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xalan/xalan/2.7.0/xalan-2.7.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-core:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-core/2.0.6/spring-core-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
backport-util-concurrent:backport-util-concurrent:jar:2.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/backport-util-concurrent/backport-util-concurrent/2.1/backport-util-concurrent-2.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.jencks:jencks:jar:2.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/jencks/jencks/2.0/jencks-2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
commons-beanutils:commons-beanutils-core:jar:1.7.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-beanutils/commons-beanutils-core/1.7.0/commons-beanutils-core-1.7.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
commons-collections:commons-collections:jar:3.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-collections/commons-collections/3.1/commons-collections-3.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: javax.xml.soap:saaj-api:jar:1.3:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/javax/xml/soap/saaj-api/1.3/saaj-api-1.3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: junit:junit:jar:4.3.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/junit/junit/4.3.1/junit-4.3.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-mock:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-mock/2.0.6/spring-mock-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.springframework:spring-web:jar:2.0.6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/springframework/spring-web/2.0.6/spring-web-2.0.6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-j2ee-management_1.0_spec:jar:1.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-management_1.0_spec/1.1/geronimo-j2ee-management_1.0_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: regexp:regexp:jar:1.3:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/regexp/regexp/1.3/regexp-1.3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: javax.xml.bind:jaxb-api:jar:2.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/javax/xml/bind/jaxb-api/2.0/jaxb-api-2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-servlet_2.5_spec:jar:1.1-M1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-servlet_2.5_spec/1.1-M1/geronimo-servlet_2.5_spec-1.1-M1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.slf4j:slf4j-api:jar:1.3.1:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/slf4j/slf4j-api/1.3.1/slf4j-api-1.3.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
commons-logging:commons-logging:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-logging/commons-logging/1.1/commons-logging-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-qname_1.1_spec:jar:1.1:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-qname_1.1_spec/1.1/geronimo-qname_1.1_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
backport-util-concurrent:backport-util-concurrent:jar:2.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/backport-util-concurrent/backport-util-concurrent/2.2/backport-util-concurrent-2.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven.wagon:wagon-provider-api:jar:1.0-alpha-6:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.xbean:xbean-classloader:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/xbean/xbean-classloader/3.0.1/xbean-classloader-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.servicemix:servicemix-core:jar:3.1.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/servicemix/servicemix-core/3.1.2/servicemix-core-3.1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-project:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: ant:ant:jar:1.6.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/ant/ant/1.6.5/ant-1.6.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-model:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-jms_1.1_spec:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-jms_1.1_spec/1.1/geronimo-jms_1.1_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xerces:xercesImpl:jar:2.8.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.jettison:jettison:jar:1.0-RC2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/jettison/jettison/1.0-RC2/jettison-1.0-RC2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: jaxme:jaxme2:jar:0.5.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/jaxme/jaxme2/0.5.1/jaxme2-0.5.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.easymock:easymock:jar:2.2:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/easymock/easymock/2.2/easymock-2.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xmlbeans:xbean:jar:2.2.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xmlbeans/xbean/2.2.0/xbean-2.2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-artifact-manager:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-artifact-manager/2.0.5/maven-artifact-manager-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
net.java.dev.stax-utils:stax-utils:jar:20060502:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/net/java/dev/stax-utils/stax-utils/20060502/stax-utils-20060502.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module" module-name="spi" />
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-project:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-project/2.0.5/maven-project-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.ws.commons.schema:XmlSchema:jar:1.3.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/ws/commons/schema/XmlSchema/1.3.2/XmlSchema-1.3.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.servicemix:servicemix-jbi:jar:3.1.2:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/servicemix/servicemix-jbi/3.1.2/servicemix-jbi-3.1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: asm:asm-all:jar:20070324:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/asm/asm-all/20070324/asm-all-20070324.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: junit:junit:jar:3.8.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/junit/junit/3.8.1/junit-3.8.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.activemq:activemq-core:jar:4.1.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/activemq/activemq-core/4.1.1/activemq-core-4.1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-artifact:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: bouncycastle:bcprov-jdk14:jar:136:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/bouncycastle/bcprov-jdk14/136/bcprov-jdk14-136.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-ws-metadata_2.0_spec:jar:1.1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-ws-metadata_2.0_spec/1.1.1/geronimo-ws-metadata_2.0_spec-1.1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.objectweb.howl:howl:jar:1.0.1-1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/objectweb/howl/howl/1.0.1-1/howl-1.0.1-1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-profile:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-profile/2.0.5/maven-profile-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: wsdl4j:wsdl4j:jar:1.6.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/wsdl4j/wsdl4j/1.6.1/wsdl4j-1.6.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.activemq:activeio-core:jar:3.0.0-incubator:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/activemq/activeio-core/3.0.0-incubator/activeio-core-3.0.0-incubator.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-javamail_1.4_spec:jar:1.0-M1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-javamail_1.4_spec/1.0-M1/geronimo-javamail_1.4_spec-1.0-M1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: velocity:velocity-dep:jar:1.4:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/velocity/velocity-dep/1.4/velocity-dep-1.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: jaxen:jaxen:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/jaxen/jaxen/1.1/jaxen-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-j2ee-jacc_1.0_spec:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-j2ee-jacc_1.0_spec/1.1/geronimo-j2ee-jacc_1.0_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.xbean:xbean-server:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/xbean/xbean-server/3.0.1/xbean-server-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.mojo:shade-maven-plugin:jar:1.0-alpha-6:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/mojo/shade-maven-plugin/1.0-alpha-6/shade-maven-plugin-1.0-alpha-6.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: aopalliance:aopalliance:jar:1.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xml-apis:xml-apis:jar:1.3.02:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xml-apis/xml-apis/1.3.02/xml-apis-1.3.02.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-artifact:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-artifact/2.0.5/maven-artifact-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-repository-metadata:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-repository-metadata/2.0.5/maven-repository-metadata-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xml-security:xmlsec:jar:1.3.0:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xml-security/xmlsec/1.3.0/xmlsec-1.3.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: httpunit:httpunit:jar:1.6.1:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/httpunit/httpunit/1.6.1/httpunit-1.6.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.modules:geronimo-transaction:jar:1.2-beta:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/modules/geronimo-transaction/1.2-beta/geronimo-transaction-1.2-beta.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-annotation_1.0_spec:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-annotation_1.0_spec/1.1/geronimo-annotation_1.0_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: org.slf4j:slf4j-jdk14:jar:1.3.1:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/slf4j/slf4j-jdk14/1.3.1/slf4j-jdk14-1.3.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xml-resolver:xml-resolver:jar:1.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xml-resolver/xml-resolver/1.2/xml-resolver-1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-activation_1.0.2_spec:jar:1.2:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.0.2_spec/1.2/geronimo-activation_1.0.2_spec-1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: xstream:xstream:jar:1.1.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/xstream/xstream/1.1.2/xstream-1.1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
com.sun.xml.bind:jaxb-impl:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/com/sun/xml/bind/jaxb-impl/2.0.5/jaxb-impl-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.codehaus.plexus:plexus-utils:jar:1.1:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: commons-lang:commons-lang:jar:2.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.xbean:xbean-kernel:jar:3.0.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/xbean/xbean-kernel/3.0.1/xbean-kernel-3.0.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-jta_1.0.1B_spec:jar:1.1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-jta_1.0.1B_spec/1.1/geronimo-jta_1.0.1B_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: com.sun.xml.bind:jaxb-xjc:jar:2.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/com/sun/xml/bind/jaxb-xjc/2.0/jaxb-xjc-2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.servicemix:servicemix-services:jar:3.1.2:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/servicemix/servicemix-services/3.1.2/servicemix-services-3.1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: commons-dbcp:commons-dbcp:jar:1.2:runtime">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/commons-dbcp/commons-dbcp/1.2/commons-dbcp-1.2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: asm:asm:jar:2.2.3:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/asm/asm/2.2.3/asm-2.2.3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
classworlds:classworlds:jar:1.1-alpha-2:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-settings:jar:2.0.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-settings/2.0.5/maven-settings-2.0.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: javax.xml.ws:jaxws-api:jar:2.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/javax/xml/ws/jaxws-api/2.0/jaxws-api-2.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-activation_1.1_spec:jar:1.0-M1:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-activation_1.1_spec/1.0-M1/geronimo-activation_1.1_spec-1.0-M1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: velocity:velocity:jar:1.4:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/velocity/velocity/1.4/velocity-1.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: cglib:cglib-nodep:jar:2.1_3:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/cglib/cglib-nodep/2.1_3/cglib-nodep-2.1_3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-repository-metadata:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-repository-metadata/2.0.4/maven-repository-metadata-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: javax.servlet:servlet-api:jar:2.3:test">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
com.sun.xml.messaging.saaj:saaj-impl:jar:1.3:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/com/sun/xml/messaging/saaj/saaj-impl/1.3/saaj-impl-1.3.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: ant:ant-nodeps:jar:1.6.5:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/ant/ant-nodeps/1.6.5/ant-nodeps-1.6.5.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-artifact-manager:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-artifact-manager/2.0.4/maven-artifact-manager-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.geronimo.specs:geronimo-ejb_2.1_spec:jar:1.1:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/geronimo/specs/geronimo-ejb_2.1_spec/1.1/geronimo-ejb_2.1_spec-1.1.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep: jdom:jdom:jar:1.0:compile">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/jdom/jdom/1.0/jdom-1.0.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-profile:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module-library">
+ <library name="M2 Dep:
org.apache.maven:maven-settings:jar:2.0.4:provided">
+ <CLASSES>
+ <root
url="jar://$MODULE_DIR$/../../../../../../.m2/repository/org/apache/maven/maven-settings/2.0.4/maven-settings-2.0.4.jar!/"
/>
+ </CLASSES>
+ <JAVADOC />
+ <SOURCES />
+ </library>
+ </orderEntry>
+ <orderEntry type="module" module-name="framework" />
<orderEntryProperties />
</component>
</module>
Modified:
stack/cxf/trunk/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java
===================================================================
---
stack/cxf/trunk/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java 2008-04-16
17:09:47 UTC (rev 6457)
+++
stack/cxf/trunk/src/main/java/org/jboss/wsf/stack/cxf/DescriptorDeploymentAspect.java 2008-04-16
18:31:02 UTC (rev 6458)
@@ -34,6 +34,7 @@
import org.jboss.wsf.spi.deployment.DeploymentAspect;
import org.jboss.wsf.spi.deployment.Endpoint;
import org.jboss.wsf.spi.deployment.Deployment.DeploymentType;
+import org.jboss.wsf.spi.WSFRuntime;
import org.jboss.wsf.stack.cxf.metadata.services.DDBeans;
import org.jboss.wsf.stack.cxf.metadata.services.DDEndpoint;
@@ -61,8 +62,7 @@
this.invokerJSE = invokerJSE;
}
- @Override
- public void create(Deployment dep)
+ public void create(Deployment dep, WSFRuntime runtime)
{
// Look for cxf.xml descriptor
ClassLoader initCL = dep.getInitialClassLoader();
@@ -139,8 +139,7 @@
}
}
- @Override
- public void destroy(Deployment dep)
+ public void destroy(Deployment dep, WSFRuntime runtime)
{
DDBeans dd = dep.getAttachment(DDBeans.class);
if (dd != null)
Modified: stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
===================================================================
--- stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-04-16 17:09:47 UTC (rev
6457)
+++ stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-04-16 18:31:02 UTC (rev
6458)
@@ -23,11 +23,6 @@
<property name="webServicePort">8080</property>
-->
</bean>
-
- <!-- The registry for web service endpoints -->
- <bean name="WSEndpointRegistry"
class="org.jboss.wsf.framework.management.ManagedEndpointRegistry">
- <property name="mbeanServer"><inject
bean="WSMBeanServerLocator"
property="mbeanServer"/></property>
- </bean>
<!-- Logging redirector -->
<bean name="JDKLogRedirector"
class="org.jboss.wsf.common.logging.JDKLogRedirector">
@@ -46,6 +41,8 @@
<property name="recording">false</property>
</bean>
+ <bean name="StackRequestHandlerFactory"
class="org.jboss.wsf.stack.cxf.RequestHandlerFactoryImpl"/>
+
<!--
The stack specific deployment aspects
-->
@@ -85,29 +82,19 @@
<!-- Deployment aspect installers -->
<!-- Phase 2 -->
- <bean name="WSCXFDeploymentAspectInstallerPreJSE"
class="org.jboss.wsf.framework.deployment.DeploymentAspectInstaller">
- <property name="manager"><inject
bean="WSDeploymentAspectManagerPreJSE"/></property>
+ <bean name="WSCXFDeploymentAspectInstallerJSE"
class="org.jboss.wsf.framework.deployment.DeploymentAspectInstaller">
+ <property name="manager"><inject
bean="WSDeploymentAspectManagerJSE"/></property>
<property name="sortAspectsOnCreate">true</property>
<property name="aspects">
<set class="java.util.HashSet"
elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
<inject bean="WSCXFContextPropertiesDeploymentAspect"/>
<inject bean="WSCXFDescriptorDeploymentAspect"/>
- </set>
- </property>
- <depends>WSDeploymentAspectInstallerPreJSE</depends>
- </bean>
-
- <!-- Phase 2 -->
- <bean name="WSCXFDeploymentAspectInstallerPostJSE"
class="org.jboss.wsf.framework.deployment.DeploymentAspectInstaller">
- <property name="manager"><inject
bean="WSDeploymentAspectManagerPostJSE"/></property>
- <property name="sortAspectsOnCreate">true</property>
- <property name="aspects">
- <set class="java.util.HashSet"
elementClass="org.jboss.wsf.spi.deployment.DeploymentAspect">
+ <!-- phase 2 -->
<inject bean="WSCXFEndpointHandlerDeploymentAspect"/>
<inject bean="WSCXFEndpointRecordProcessorDeploymentAspect"/>
</set>
</property>
- <depends>WSDeploymentAspectInstallerPostJSE</depends>
+ <depends>WSDeploymentAspectInstallerJSE</depends>
</bean>
<bean name="WSCXFDeploymentAspectInstallerEJB"
class="org.jboss.wsf.framework.deployment.DeploymentAspectInstaller">
Modified: stack/cxf/trunk/version.properties
===================================================================
--- stack/cxf/trunk/version.properties 2008-04-16 17:09:47 UTC (rev 6457)
+++ stack/cxf/trunk/version.properties 2008-04-16 18:31:02 UTC (rev 6458)
@@ -31,12 +31,15 @@
cxf.xml.resolver=1.2
cxf.xmlschema=1.3.2
-# Thirdparty library versions
-jbossws-spi=1.0.2.GA
+# Dependend integration projects
+jbossws-spi=3.0.0-SNAPSHOT
jbossws-common=snapshot
-jbossws-framework=snapshot
-jbossws-jboss42=4.2.1.GA
+jbossws-framework=3.0.2-SNAPSHOT
+jbossws-jboss422=4.2.2.DEV
+jbossws-jboss423=4.2.3.DEV
+jbossws-jboss501=5.0.1.DEV
+
apache-xml-commons=1.2
ibm-wsdl4j=1.6.2
jboss-common-core=2.0.2.GA