[jboss-svn-commits] JBL Code SVN: r38223 - labs/jbossesb/trunk/product/services/soap.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sun Oct 14 21:58:20 EDT 2012
Author: tcunning
Date: 2012-10-14 21:58:19 -0400 (Sun, 14 Oct 2012)
New Revision: 38223
Modified:
labs/jbossesb/trunk/product/services/soap/build.xml
Log:
JBESB-3857
Commit tools.jar fix.
Modified: labs/jbossesb/trunk/product/services/soap/build.xml
===================================================================
--- labs/jbossesb/trunk/product/services/soap/build.xml 2012-10-12 21:06:28 UTC (rev 38222)
+++ labs/jbossesb/trunk/product/services/soap/build.xml 2012-10-15 01:58:19 UTC (rev 38223)
@@ -52,12 +52,13 @@
<path id="tools.jar.classpath">
<fileset dir="${java.home}/../lib" includes="tools.jar"/>
</path>
+ <property name="tools.jar.location" refid="tools.jar.classpath"/>
+ <echo>tools.jar=${tools.jar.location}</echo>
</target>
<target name="init.classpath" depends="tools.classpath">
- <path id="tools.jar.classpath">
- </path>
+ <property name="tools.jar.location" value=""/>
<path id="classpath">
<pathelement location="src/test/resources"/>
@@ -125,9 +126,10 @@
</path>
+
<path id="exec.classpath">
<!-- Ant seem to use JRE by default even if JAVA_HOME is set to JDK -->
- <path refid="tools.jar.classpath"/>
+ <pathelement location="${tools.jar.classpath}"/>
<pathelement location="${aop.jar}"/>
<pathelement location="${build.dir}/${wise.jar}"/>
<path refid="classpath"/>
More information about the jboss-svn-commits
mailing list