--- Bryce Fischer <[EMAIL PROTECTED]> wrote: > > > > --- Bryce Fischer <[EMAIL PROTECTED]> > wrote: > > > I've posted this to the Maven list, and was > hoping > > > to get some input > > > from here as well. > > > > > > I'm trying to use the XDoclet plugin for Maven. > When > > > I type: > > > maven -X xdoclet:ejbdoclet > > > > > > It runs with no errors, but it doesn't appear to > do > > > anything. Someone > > > suggested on the Maven list that it appears that > > > XDoclet is not finding > > > any sources to run against. The debug > information > > > makes it look like its > > > looking in the correct location: > > > > nevertheless, no xdoclet subtask was run. > > can you show your (build|project).properties? > > I have no build.properties file. I removed > everything to try to get it > to run with the default values. >
That's mistake. You need to activate your subtasks explicitely in project.properties ( build.properties are meant to hold your local settings ) like this: maven.xdoclet.ejbdoclet.<your subtask name>.<0, or whatever index you need for subsequent invocations>=true subtask could be remoteinterface , localinterface or whatever. Then you also shall pass your subtask properties. regards, ===== ----[ Konstantin Pribluda ( ko5tik ) ]---------------- Zu Verst�rkung meines Teams suche ich ab Sofort einen Softwareentwickler[In] f�r die Festanstellung. Arbeitsort: Mainz Skills: Programieren, Kentnisse in OpenSource-Bereich ----[ http://www.pribluda.de ]------------------------ __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
