OK - that works better - but it makes for a pretty cryptic error message. Also, I'm not certain about the wisdom of requiring a separate dependency for each plugin instead of bundling them all together. None of them would get bundled into distributed code, so a couple of hundred KB seems pretty trivial.
Thanks, - Matt -----Original Message----- From: Konstantin Priblouda [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 25, 2005 8:01 AM To: [email protected] Subject: RE: [xdoclet-user] Class Not Found ClassLoader URLs --- "Kleiderman, Matthew" <[EMAIL PROTECTED]> wrote: > The only dependency is on XDoclet2: > > <dependency> > <groupId>xdoclet-plugins</groupId> > <artifactId>maven-xdoclet2-plugin</artifactId> > <version>SNAPSHOT</version> > </dependency> > > maven -X isn't giving me much to work with - the > last entries on std out > are: You shall also add dependency to plugin itself like this: <dependency> <groupId>xdoclet-plugins</groupId> <artifactId>xdoclet-plugin-hibernate</artifactId> <version>1.0.1</version> <properties> <xdoclet.dependency>true</xdoclet.dependency> </properties> </dependency> ( xdoclet.dependency is importan for maven plugin ) regards, ----[ Konstantin Pribluda http://www.pribluda.de ]---------------- Still using XDoclet 1.x? XDoclet 2 is released and of production quality. check it out: http://xdoclet.codehaus.org __________________________________ Yahoo! FareChase: Search multiple travel sites in one click. http://farechase.yahoo.com
