[jboss-svn-commits] JBL Code SVN: r38222 - labs/jbossesb/trunk/product/services/soap.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Oct 12 17:06:28 EDT 2012
Author: tcunning
Date: 2012-10-12 17:06:28 -0400 (Fri, 12 Oct 2012)
New Revision: 38222
Modified:
labs/jbossesb/trunk/product/services/soap/build.xml
Log:
JBESB-3857
Make sure tools.jar is on the classpath for Windows and Linux but not Mac OS X.
Modified: labs/jbossesb/trunk/product/services/soap/build.xml
===================================================================
--- labs/jbossesb/trunk/product/services/soap/build.xml 2012-10-12 18:23:46 UTC (rev 38221)
+++ labs/jbossesb/trunk/product/services/soap/build.xml 2012-10-12 21:06:28 UTC (rev 38222)
@@ -38,12 +38,17 @@
<target name="test" depends="base.test"/>
<target name="set.windows.os">
- <condition property="windows.os">
- <os family="windows"/>
- </condition>
+ <condition property="os.not.macosx">
+ <not>
+ <and>
+ <os family="mac"/>
+ <os family="unix"/>
+ </and>
+ </not>
+ </condition>
</target>
- <target name="tools.classpath" depends="set.windows.os" if="windows.os">
+ <target name="tools.classpath" depends="set.windows.os" if="os.not.macosx">
<path id="tools.jar.classpath">
<fileset dir="${java.home}/../lib" includes="tools.jar"/>
</path>
More information about the jboss-svn-commits
mailing list