Michael Leditschke wrote: >>Yeah, sadly, the nightly builds have not really been "builds" for some >>time now, due to prereq-failures or errors in obscure corners of our own >>code (the nightlies are built by Gump). >> >>So, if you downloaded a nightly, you actually just downloaded a source >>snapshot, and will need to do the build yourself :-( > > > Thanks Chris. > > building wasn't what I wanted to do but here goes... > > I've downloaded Ant and few required jar files and > initiated the build. > > It gets to the webdav-client and then fails with the > following errors > > webdav-client: > [antlr] java.lang.NoClassDefFoundError: antlr/Tool > [antlr] Exception in thread "main" > > > > antlr.jar and antlr-tools.jar are in ./lib. Any > suggestions?
This should go in the FAQ ;-) If you have installed Ant 1.5 or later, locate a line in the build.xml file that contains the string "Ant 1.5"... under that is a <classpath> element commented out... all you need to do is uncomment it. If you're using an earler version of Ant, you'll need to put the ANTLR jars on your classpath by appending them to the CLASSPATH env variable. Yes, it's a mess :-( -- Christopher Lenz /=/ cmlenz at gmx.de -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
