Never mind.  I finally ran across a message in the mailing list archive that
hinted at a dependency on the xdoclet-ejb-module that, if not satified,
would cause xdoclet to terminate without much notice.  I simply added the
xdoclet-ejb-module to the dependency section of my project.xml and all is
well!


> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Marc
> Dugger
> Sent: Wednesday, November 05, 2003 8:48 AM
> To: [EMAIL PROTECTED]
> Subject: [Xdoclet-user] maven plug-in help
>
>
> Can someone point me in the direction of some good 'getting started'
> instructions for generating Struts components using XDoclet and Maven?
> Nothing is being generated for me.  I've defined these properties in my
> project.properties thus far:
>
> maven.xdoclet.webdoclet.fileset.4=true
> maven.xdoclet.webdoclet.fileset.4.include=**/web/**/*Form.java
> maven.xdoclet.webdoclet.strutsconfigxml.1=true
> maven.xdoclet.webdoclet.strutsconfigxml.1.mergeDir=${maven.src.dir
> }/xdoclet/
> webdoclet/struts/workbench
>
> ...and created a simple LoginForm.java under package **/web/user/:
>
> /**
>  * @struts.form name="LoginForm"
>  */
> public class LoginForm extends ValidatorForm {
>
>     private String login;
>     private String password;
>
>     /**
>      * @struts.form-field name="LoginForm"
>      */
>     public String getLogin() {
>         return login;
>     }
>     public void setLogin(String login) {
>         this.login = login;
>     }
>
>     /**
>      * @struts.form-field name="LoginForm"
>      */
>     public String getPassword() {
>         return password;
>     }
>     public void setPassword(String password) {
>         this.password = password;
>     }
> }
>
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: SF.net Giveback Program.
> Does SourceForge.net help you be more productive?  Does it
> help you create better code?   SHARE THE LOVE, and help us help
> YOU!  Click Here: http://sourceforge.net/donate/
> _______________________________________________
> xdoclet-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/xdoclet-user



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to