I'm trying to define a Junit task. The start of my build file looks like
this:
<project name="util" default="main" basedir=".">
<taskdef name="junit"
classname="org.apache.tools.ant.taskdefs.junit.JUnitTask"/>
<target name="main" depends="properties, bat, sh">
I have jakarta-ant-1.3-optional.jar in my class path.
I can't get beyond...
F:\Mainline\univ\java\src\com\lawson\rdtech\xml\util\build.xml:4: taskdef
class org.apache.tools.ant.taskdefs.junit.JUnitTask cannot
be found
java.lang.ClassNotFoundException:
org.apache.tools.ant.taskdefs.junit.JUnitTask
What obvious thing am I missing?
Thanks in advance,
Mike McGowan
[EMAIL PROTECTED]