Using Ant 1.5.1, Sun JDK 1.4.1_01 with this script:
<path id="classpath">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
</path>
<target name="build-resources">
<java classname="test.MyClass>
<classpath>
<path refid="classpath"/>
</classpath>
</java>
</target>
I get this error:
java.lang.NoClassDefFoundError: org/w3c/dom/Element
It runs from the command line fine with java -cp lib\myjar.jar test.MyClass
Obviously my class does import/use org.w3c.dom.Element
Any ideas on what is happening here?
-Jerry
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]