junit is not on your CLASSPATH on deadrat (whatever that may be) but on Windows and the way you add it in the build file doesn't work:
> <path id="compileClasspath"> > <pathelement path="/usr/java"/> > <pathelement location="junit.jar"/> > </path> Adds the directory /usr/java and the file junit.jar that lives in your basedir to the classpath. Make the second one <pathelement location="/usr/java/junit.jar"/> and it should work. Stefan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
