ant's java task can't find a jar in the jre/lib/ext directory
I put "stax-utils.jar" in the extensions directory ([JAVA_HOME]/jre/lib/ext), but ant's java task can't find it, giving: java.lang.NoClassDefFoundError: javanet/staxutils/IndentingXMLStreamWriter Strangely, it works for compilation: ant's javac task can find it. The problem is only with running code, with ant's java task... If I us...