You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2009/09/18 00:03:05 UTC

svn commit: r816394 - /jakarta/jmeter/trunk/extras/build.xml

Author: sebb
Date: Thu Sep 17 22:03:05 2009
New Revision: 816394

URL: http://svn.apache.org/viewvc?rev=816394&view=rev
Log:
Allow file to work with whatever versions of xalan and serialzer are present

Modified:
    jakarta/jmeter/trunk/extras/build.xml

Modified: jakarta/jmeter/trunk/extras/build.xml
URL: http://svn.apache.org/viewvc/jakarta/jmeter/trunk/extras/build.xml?rev=816394&r1=816393&r2=816394&view=diff
==============================================================================
--- jakarta/jmeter/trunk/extras/build.xml (original)
+++ jakarta/jmeter/trunk/extras/build.xml Thu Sep 17 22:03:05 2009
@@ -109,13 +109,11 @@
 	</target>
 
 	<property name="lib.dir" value="${jmeter.home}/lib"/>
-    <property name="xalan.jar" value="${lib.dir}/xalan_2_7_1.jar"/>
-    <property name="serializer.jar" value="${lib.dir}/serializer-2_9_1.jar"/>
 	
 	<!-- Use xalan copy from JMeter lib directory to ensure consistent processing with Java 1.4+ -->
     <path id="xslt.classpath">
-       <pathelement location="${xalan.jar}"/>
-       <pathelement location="${serializer.jar}"/>
+        <fileset dir="${lib.dir}" includes="xalan*.jar"/>
+        <fileset dir="${lib.dir}" includes="serializer*.jar"/>
     </path>
 
 	<target name="report" depends="_message_xalan">
@@ -141,7 +139,7 @@
 	<target name="_message_xalan" unless="xalan.present">
 	  	<echo>Cannot find all xalan and/or serialiser jars</echo>
 		<echo>The XSLT formatting may not work correctly.</echo>
-		<echo>Check you have ${xalan.jar} and ${serializer.jar}</echo>
+		<echo>Check you have xalan and serializer jars in ${lib.dir}</echo>
 	</target>
 
 



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org