jruaux 2003/03/12 07:15:55
Modified: integration/eclipse build.xml
Log:
Changed target name to more explicit one
Revision Changes Path
1.11 +4 -4 jakarta-cactus/integration/eclipse/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/integration/eclipse/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 12 Mar 2003 15:03:44 -0000 1.10
+++ build.xml 12 Mar 2003 15:15:55 -0000 1.11
@@ -35,7 +35,7 @@
Initialize source, target and dist properties
========================================================================
-->
- <target name="properties" depends="init.junitplugin.find">
+ <target name="properties" depends="init.eclipseversion.check">
<!-- Set the properties related to the source tree -->
<property name="src.dir" value="${base.dir}/src"/>
@@ -104,9 +104,9 @@
Find out the JUnit Eclipse plug-in version
========================================================================
-->
- <target name="init.junitplugin.find">
+ <target name="init.eclipseversion.check">
<echo>***** Needs Eclipse 2.1 RC2 or later *****</echo>
- <condition property="junitplugin.version" value="ok">
+ <condition property="eclipse.version" value="ok">
<available classname="org.eclipse.jdt.junit.ITestRunListener">
<classpath>
<pathelement location="${eclipse.jdt.junit.jar}"/>
@@ -115,7 +115,7 @@
</condition>
<fail message="Eclipse version must be higher than 2.1 RC2"
- unless="junitplugin.version"/>
+ unless="eclipse.version"/>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]