Author: thomas.diesler(a)jboss.com
Date: 2008-05-02 10:50:56 -0400 (Fri, 02 May 2008)
New Revision: 6860
Removed:
stack/cxf/trunk/ant.properties.example
stack/cxf/trunk/cxf-trunk.iml
Modified:
stack/cxf/trunk/build.xml
stack/cxf/trunk/src/main/distro/build-setup.xml
stack/cxf/trunk/src/main/distro/build.xml
Log:
Load the jboss.home properties from the effective maven settings
Deleted: stack/cxf/trunk/ant.properties.example
===================================================================
--- stack/cxf/trunk/ant.properties.example 2008-05-02 14:50:45 UTC (rev 6859)
+++ stack/cxf/trunk/ant.properties.example 2008-05-02 14:50:56 UTC (rev 6860)
@@ -1,17 +0,0 @@
-#
-# A sample ant properties file
-#
-# $Id: ant.properties.example 3995 2007-07-26 08:52:45Z thomas.diesler(a)jboss.com $
-
-# Optional JBoss Home
-#jboss422.home=/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA
-#jboss423.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.3.GA
-#jboss500.home=/home/tdiesler/svn/jbossas/tags/JBoss_5_0_0_Beta4/build/output/jboss-5.0.0.Beta4
-#jboss501.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.CR1
-
-# The JBoss settings
-jboss.server.instance=default
-
-# JBossWS Release
-jbossws.portal.content=/home/tdiesler/svn/jbossws/portal-content
-jboss.local.repository=/home/tdiesler/svn/jboss.local.repository
\ No newline at end of file
Modified: stack/cxf/trunk/build.xml
===================================================================
--- stack/cxf/trunk/build.xml 2008-05-02 14:50:45 UTC (rev 6859)
+++ stack/cxf/trunk/build.xml 2008-05-02 14:50:56 UTC (rev 6860)
@@ -38,7 +38,38 @@
<!-- Initialization -->
<!-- ================================================================== -->
- <target name="init" depends="prepare">
+ <!--
+ Loads the jboss.home properties from the effective maven settings
+ -->
+ <target name="mvn-settings">
+ <mkdir dir="${stack.output.dir}"/>
+ <exec dir="${basedir}" executable="mvn"
failonerror="true"
output="${stack.output.dir}/effective-settings.txt">
+ <arg value="help:effective-settings"/>
+ </exec>
+ <loadfile srcfile="${stack.output.dir}/effective-settings.txt"
property="mvn.effective.settings">
+ <filterchain>
+ <tokenfilter>
+ <replaceregex pattern="\[INFO\](.*)" replace=""/>
+ <replaceregex pattern="Effective settings:"
replace=""/>
+ <replaceregex pattern=".\?xml(.*)\?\>"
replace=""/>
+ </tokenfilter>
+ </filterchain>
+ </loadfile>
+ <echo message="${mvn.effective.settings}"
file="${stack.output.dir}/effective-settings.xml"/>
+ <xmlproperty file="${stack.output.dir}/effective-settings.xml"/>
+ <property name="jboss421.home"
value="${settings.profiles.profile.properties.jboss421.home}"/>
+ <property name="jboss422.home"
value="${settings.profiles.profile.properties.jboss422.home}"/>
+ <property name="jboss423.home"
value="${settings.profiles.profile.properties.jboss423.home}"/>
+ <property name="jboss500.home"
value="${settings.profiles.profile.properties.jboss500.home}"/>
+ <property name="jboss501.home"
value="${settings.profiles.profile.properties.jboss501.home}"/>
+ <echo message="jboss421.home=${jboss421.home}"/>
+ <echo message="jboss422.home=${jboss422.home}"/>
+ <echo message="jboss423.home=${jboss423.home}"/>
+ <echo message="jboss500.home=${jboss500.home}"/>
+ <echo message="jboss501.home=${jboss501.home}"/>
+ </target>
+
+ <target name="init" depends="mvn-settings,prepare">
<xmlproperty file="${stack.dir}/pom.xml"/>
<property name="version.id" value="${project.version}"/>
@@ -76,19 +107,4 @@
</exec>
</target>
- <!-- ================================================================== -->
- <!-- Miscellaneous -->
- <!-- ================================================================== -->
-
- <target name="clean" depends="prepare" description="Cleans
up most generated files.">
-
- <echo message="*************************************"/>
- <echo message="* mvn clean *"/>
- <echo message="*************************************"/>
-
- <exec dir="${basedir}" executable="mvn"
failonerror="true">
- <arg value="clean"/>
- </exec>
- </target>
-
</project>
Deleted: stack/cxf/trunk/cxf-trunk.iml
===================================================================
--- stack/cxf/trunk/cxf-trunk.iml 2008-05-02 14:50:45 UTC (rev 6859)
+++ stack/cxf/trunk/cxf-trunk.iml 2008-05-02 14:50:56 UTC (rev 6860)
@@ -1,1079 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module version="4" relativePaths="true"
type="JAVA_MODULE">
- <component name="ModuleRootManager" />
- <component name="NewModuleRootManager"
inherit-compiler-output="true">
- <exclude-output />
- <content url="file://$MODULE_DIR$">
- <sourceFolder url="file://$MODULE_DIR$/src/main/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/distro/build-setup.xml
===================================================================
--- stack/cxf/trunk/src/main/distro/build-setup.xml 2008-05-02 14:50:45 UTC (rev 6859)
+++ stack/cxf/trunk/src/main/distro/build-setup.xml 2008-05-02 14:50:56 UTC (rev 6860)
@@ -17,56 +17,48 @@
<!-- Setup -->
<!-- ================================================================== -->
- <!-- Check if ant.properties is available -->
- <available property="ant.properties.available"
file="${basedir}/ant.properties"/>
- <fail message="Cannot find ant.properties. Did you copy/edit
ant.properties.example?" unless="ant.properties.available"/>
- <property file="${basedir}/ant.properties"/>
-
- <property name="jboss422.lib" value="${jboss422.home}/lib"/>
- <property name="jboss422.client"
value="${jboss422.home}/client"/>
- <property name="jboss422.server"
value="${jboss422.home}/server/${jboss.server.instance}"/>
- <property name="jboss422.server.lib"
value="${jboss422.server}/lib"/>
- <property name="jboss422.server.deploy"
value="${jboss422.server}/deploy"/>
-
- <property name="jboss423.lib" value="${jboss423.home}/lib"/>
- <property name="jboss423.client"
value="${jboss423.home}/client"/>
- <property name="jboss423.server"
value="${jboss423.home}/server/${jboss.server.instance}"/>
- <property name="jboss423.server.lib"
value="${jboss423.server}/lib"/>
- <property name="jboss423.server.deploy"
value="${jboss423.server}/deploy"/>
-
- <property name="jboss500.lib" value="${jboss500.home}/lib"/>
- <property name="jboss500.client"
value="${jboss500.home}/client"/>
- <property name="jboss500.server"
value="${jboss500.home}/server/${jboss.server.instance}"/>
- <property name="jboss500.server.lib"
value="${jboss500.server}/lib"/>
- <property name="jboss500.server.deploy"
value="${jboss500.server}/deploy"/>
- <property name="jboss500.server.deployers"
value="${jboss500.server}/deployers"/>
-
- <property name="jboss501.lib" value="${jboss501.home}/lib"/>
- <property name="jboss501.client"
value="${jboss501.home}/client"/>
- <property name="jboss501.server"
value="${jboss501.home}/server/${jboss.server.instance}"/>
- <property name="jboss501.server.lib"
value="${jboss501.server}/lib"/>
- <property name="jboss501.server.deploy"
value="${jboss501.server}/deploy"/>
- <property name="jboss501.server.deployers"
value="${jboss501.server}/deployers"/>
-
- <property name="jboss422.available.file"
value="${jboss422.client}/jboss-client.jar"/>
- <property name="jboss423.available.file"
value="${jboss423.client}/jboss-client.jar"/>
- <property name="jboss500.available.file"
value="${jboss500.client}/jboss-client.jar"/>
- <property name="jboss501.available.file"
value="${jboss501.client}/jboss-client.jar"/>
-
- <available property="jboss422.available"
file="${jboss422.available.file}"/>
- <available property="jboss423.available"
file="${jboss423.available.file}"/>
- <available property="jboss500.available"
file="${jboss500.available.file}"/>
- <available property="jboss501.available"
file="${jboss501.available.file}"/>
-
- <!-- ================================================================== -->
- <!-- Initialization -->
- <!-- ================================================================== -->
-
<target name="prepare">
<!-- Load jbossws.integration.target properties -->
<property file="${target.properties.file}"/>
+ <property name="jboss.server.instance" value="default"/>
+ <property name="jboss422.lib"
value="${jboss422.home}/lib"/>
+ <property name="jboss422.client"
value="${jboss422.home}/client"/>
+ <property name="jboss422.server"
value="${jboss422.home}/server/${jboss.server.instance}"/>
+ <property name="jboss422.server.lib"
value="${jboss422.server}/lib"/>
+ <property name="jboss422.server.deploy"
value="${jboss422.server}/deploy"/>
+
+ <property name="jboss423.lib"
value="${jboss423.home}/lib"/>
+ <property name="jboss423.client"
value="${jboss423.home}/client"/>
+ <property name="jboss423.server"
value="${jboss423.home}/server/${jboss.server.instance}"/>
+ <property name="jboss423.server.lib"
value="${jboss423.server}/lib"/>
+ <property name="jboss423.server.deploy"
value="${jboss423.server}/deploy"/>
+
+ <property name="jboss500.lib"
value="${jboss500.home}/lib"/>
+ <property name="jboss500.client"
value="${jboss500.home}/client"/>
+ <property name="jboss500.server"
value="${jboss500.home}/server/${jboss.server.instance}"/>
+ <property name="jboss500.server.lib"
value="${jboss500.server}/lib"/>
+ <property name="jboss500.server.deploy"
value="${jboss500.server}/deploy"/>
+ <property name="jboss500.server.deployers"
value="${jboss500.server}/deployers"/>
+
+ <property name="jboss501.lib"
value="${jboss501.home}/lib"/>
+ <property name="jboss501.client"
value="${jboss501.home}/client"/>
+ <property name="jboss501.server"
value="${jboss501.home}/server/${jboss.server.instance}"/>
+ <property name="jboss501.server.lib"
value="${jboss501.server}/lib"/>
+ <property name="jboss501.server.deploy"
value="${jboss501.server}/deploy"/>
+ <property name="jboss501.server.deployers"
value="${jboss501.server}/deployers"/>
+
+ <property name="jboss422.available.file"
value="${jboss422.client}/jboss-client.jar"/>
+ <property name="jboss423.available.file"
value="${jboss423.client}/jboss-client.jar"/>
+ <property name="jboss500.available.file"
value="${jboss500.client}/jboss-client.jar"/>
+ <property name="jboss501.available.file"
value="${jboss501.client}/jboss-client.jar"/>
+
+ <available property="jboss422.available"
file="${jboss422.available.file}"/>
+ <available property="jboss423.available"
file="${jboss423.available.file}"/>
+ <available property="jboss500.available"
file="${jboss500.available.file}"/>
+ <available property="jboss501.available"
file="${jboss501.available.file}"/>
+
<tstamp>
<format property="build.id" pattern="yyyyMMddHHmm"/>
</tstamp>
Modified: stack/cxf/trunk/src/main/distro/build.xml
===================================================================
--- stack/cxf/trunk/src/main/distro/build.xml 2008-05-02 14:50:45 UTC (rev 6859)
+++ stack/cxf/trunk/src/main/distro/build.xml 2008-05-02 14:50:56 UTC (rev 6860)
@@ -28,6 +28,11 @@
<property name="jbossws.default.deploy.conf"
value="${build.dir}/jbossws-default-deploy.conf"/>
<property name="target.properties.file"
value="${basedir}/target.properties"/>
+ <!-- Check if ant.properties is available -->
+ <available property="ant.properties.available"
file="${basedir}/ant.properties"/>
+ <fail message="Cannot find ant.properties. Did you copy/edit
ant.properties.example?" unless="ant.properties.available"/>
+ <property file="${basedir}/ant.properties"/>
+
<import file="${build.dir}/build-setup.xml"/>
<import file="${build.dir}/build-deploy.xml"/>
<import file="${build.dir}/jbossws-deploy-macros.xml"/>
Show replies by date