----- Original Message -----
From: "Joe Howes" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, August 09, 2001 4:08 AM
Subject: Some solutions I've found...
> Spent the day struggling with the following ANT issues:
Onfortunately you are not telling us which version you are using...
It works for me using Ant 1.3 and Ant 1.4alpha (build 2001-08-08) using JDK
1.2.2_008 on W2K with SP2.
The buildfile I used was:
<project name="MyProject" default="test" basedir=".">
<property name="build.compiler" value="jikes"/>
<target name="test">
<delete file="Test.class"/>
<javac srcdir="." destdir="."
includes="Test.java" failonerror="false"/>
<cvs command="-help"/>
</target>
</project>
> Turned out both issues were caused by my java SDK version: JAVA_HOME
> being "jdk1.2.2" instead of "jdk1.3.1" or "jdk1.3.2";
I think you need to provide more Information about the errors and your
environment.
Nico