up vote 0 down vote favorite
share [g+] share [fb]

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 use java from the command line, the jar is found and I can use classes from it.

  • If I explicitly give ant the classpath to that specific jar in the extension directory, it also works.

(I've seen this problem before, with one of the XML libraries.)

link|improve this question

Is it javanet.staxutils... or java.net.staxutils..? – Ram Jun 6 '09 at 6:11
The former (and it works for compilation, and from the command line, suggesting it is successfully accessing the jar and classes). java2s.com/Open-Source/Java-Document/XML/stax-utils/javanet/… – 13ren Jun 6 '09 at 6:49
feedback

2 Answers

try adding it to ANT_HOME/lib

link|improve this answer
No, that didn't work. – 13ren Jun 6 '09 at 6:31
feedback

Are you certain that you use the JVM corresponding to your JAVA_HOME?

link|improve this answer
yes. <echo>${java.home}</echo> gives the jre that contains the lib/ext/staxutils.jar file – 13ren Jun 6 '09 at 6:51
actually... you seem to be right... I did a little more hunting, and <echo>${java.vm.version}</echo> gives 10.0-b19... but the commandline java -version gives 1.6.0_04-b12 The weird thing is that I don't have build 10 installed (unless eclipse or netbeans installed it somewhere when I tried them out). – 13ren Jun 6 '09 at 7:05
correction: 10.0-b19 is from "Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode, sharing)", and I've confirmed that that is the one in JAVA_HOME (by going to the dir, and typing "./java -version" – 13ren Jun 6 '09 at 7:10
It should be in JAVA_HOME/lib/ext, not jre/lib/ext. I think you are putting it in the wrong location. What is the reason that you want to have it in lib/ext? It will give you this problem MANY times over... – Thorbjørn Ravn Andersen Jun 6 '09 at 9:24
@Thorbjørn I have no preference: but JAVA_HOME/lib/ext does not exist in my Java 1.6 installation. The only ext I could find was in JAVA_HOME/jre/lib/ext. I'll try creating the directory you suggest (but I think if it was meant to me there, the installation would have created it). – 13ren Jun 8 '09 at 22:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.