On Tue, 2003-06-10 at 21:37, Craig Shearer wrote: > OK, I got it to work further, after sorting out the junit issue, but now the > build fails with the error below. > > Any help much appreciated... ... > externalizer: > [echo] Generating message bundle files for core... > > BUILD FAILED > java.lang.NoClassDefFoundError: xdoclet/modules/doc/DocumentDocletTask > (wrong name: > xdoclet/modules/xdoclet/src/xdoclet/modules/doc/DocumentDocletTask)
I may be wrong, but that looks like the class loader is complaining that the class found in the xdoclet/modules/doc/DocumentDocletTask.class file has an incorrect classname which doesn't match what it expected (based on its path), specifically xdoclet.modules.xdoclet.src.xdoclet.modules.doc.DocumentDocletTask instead of xdoclet.modules.doc.DocumentDocletTask You haven't had that source file open in an IDE which might have "corrected" the package declaration, have you? Could you check in that file to make sure its package is declared as just xdoclet.modules.doc? Andrew. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The best thread debugger on the planet. Designed with thread debugging features you've never dreamed of, try TotalView 6 free at www.etnus.com. _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
