adammurdoch 02/04/19 18:39:25
Modified: src/stylesheets build.xsl
Log:
Fixed detection of ant1.5, and made sure there's an XML parser available to
the unit tests.
Revision Changes Path
1.7 +6 -6 jakarta-ant-myrmidon/src/stylesheets/build.xsl
Index: build.xsl
===================================================================
RCS file: /home/cvs/jakarta-ant-myrmidon/src/stylesheets/build.xsl,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- build.xsl 19 Apr 2002 12:34:14 -0000 1.6
+++ build.xsl 20 Apr 2002 01:39:25 -0000 1.7
@@ -110,12 +110,11 @@
<available property="jdk1.4+"
classname="java.lang.CharSequence" />
<!-- Check for Ant version 1.5 -->
- <property resource="org/apache/tools/ant/version.txt"
- classpath="${java.class.path}"/>
+ <property resource="org/apache/tools/ant/version.txt"/>
<condition property="ant1.5">
<or>
- <equals arg1="${VERSION}" arg2="1.5alpha"/>
- <equals arg1="${VERSION}" arg2="1.5"/>
+ <equals arg1="${{VERSION}}" arg2="1.5alpha"/>
+ <equals arg1="${{VERSION}}" arg2="1.5"/>
</or>
</condition>
@@ -224,11 +223,12 @@
failureProperty="tests.failed"
printsummary="yes" >
- <classpath refid="test.class.path"/>
<classpath>
+ <path location="${{test.classes}}"/>
<fileset dir="${{build.lib}}"
includes="*.jar, *.atl"/>
+ <path refid="test.class.path"/>
+ <fileset dir="../tools/xalan"
includes="*.jar"/>
</classpath>
- <classpath location="${{test.classes}}"/>
<sysproperty key="test.basedir"
file="${{test.classes}}"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>