[jboss-svn-commits] JBL Code SVN: r16117 - labs/jbossesb/trunk/product/samples/quickstarts/load_generator.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Sat Oct 27 15:36:21 EDT 2007
Author: james.williams at jboss.com
Date: 2007-10-27 15:36:20 -0400 (Sat, 27 Oct 2007)
New Revision: 16117
Modified:
labs/jbossesb/trunk/product/samples/quickstarts/load_generator/build.xml
Log:
[#JBESB-1221] - fixed compilation error issue by removing the env.GROOVY_HOME dependency. Now the QS uses the bundled version of groovy, which should remove the need to check for the variable.
Modified: labs/jbossesb/trunk/product/samples/quickstarts/load_generator/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/load_generator/build.xml 2007-10-27 19:13:30 UTC (rev 16116)
+++ labs/jbossesb/trunk/product/samples/quickstarts/load_generator/build.xml 2007-10-27 19:36:20 UTC (rev 16117)
@@ -9,11 +9,9 @@
<import file="../conf/base-build.xml" />
<property file="../conf/quickstarts.properties" />
- <property environment="env" />
-
<path id="groovy.classpath">
- <fileset dir="${env.GROOVY_HOME}/embeddable/" includes="*.jar" />
- <fileset dir="${env.GROOVY_HOME}/lib/" includes="commons-*.jar" />
+ <fileset dir="${org.jboss.esb.server.home}/server/${org.jboss.esb.server.config}/deploy/jbossesb.sar/lib" includes="groovy*.jar" />
+ <fileset dir="${org.jboss.esb.server.home}/server/${org.jboss.esb.server.config}/deploy/jbossesb.sar/lib" includes="commons-*.jar" />
<fileset dir="${org.jboss.esb.server.home}/client" includes="jbossall-client.jar" />
<fileset dir="${org.jboss.esb.server.home}/lib/endorsed" includes="xercesImpl.jar" />
</path>
More information about the jboss-svn-commits
mailing list