Here it is:
in project.properties:

#ejbdoclet.bea default properties
#see
http://xdoclet.sourceforge.net/xdoclet/ant/xdoclet/modules/bea/wls/ejb/WebLogicSubTask.html
maven.xdoclet.ejbdoclet.weblogic.0=true
maven.xdoclet.ejbdoclet.weblogic.0.Version=8.1
maven.xdoclet.ejbdoclet.weblogic.0.xmlencoding=ISO-8859-1
maven.xdoclet.ejbdoclet.weblogic.0.destDir=${maven.build.dir}/classes/META-INF
maven.xdoclet.ejbdoclet.weblogic.0.Createtables=Disabled

in maven.xml:
  <preGoal name="java:compile">
       <ant:mkdir dir="${maven.gen.src}"/>
       <ant:mkdir dir="${maven.xdoclet.ejbdoclet.destDir}"/>
       <attainGoal name="xdoclet:ejbdoclet"/>
   </preGoal>

in project.xml:
  <dependency>
     <id>xdoclet</id>
     <version>1.2.3</version>
   </dependency>

   <dependency>
     <groupId>xdoclet</groupId>
     <artifactId>xdoclet-ejb-module</artifactId>
     <version>1.2.3</version>
   </dependency>

  <dependency>
       <groupId>xdoclet</groupId>
       <artifactId>xdoclet-jboss-module</artifactId>
       <version>1.2.3</version>
   </dependency>

   <dependency>
     <groupId>xjavadoc</groupId>
     <artifactId>xjavadoc</artifactId>
     <version>1.1</version>
   </dependency>

   <dependency>
     <groupId>xdoclet</groupId>
     <artifactId>xdoclet-jmx-module</artifactId>
     <version>1.2.3</version>
   </dependency>

   <dependency>
     <groupId>xdoclet</groupId>
     <artifactId>xdoclet-web-module</artifactId>
     <version>1.2.3</version>
   </dependency>

   <dependency>
     <groupId>xdoclet</groupId>
     <artifactId>maven-xdoclet-plugin</artifactId>
     <version>1.2.3</version>
     <type>plugin</type>
   </dependency>

    <dependency>
     <groupId>jboss</groupId>
     <artifactId>jboss-j2ee</artifactId>
     <version>3.2.3</version>
   </dependency>

   <dependency>
     <groupId>jboss</groupId>
     <artifactId>jbossall-client</artifactId>
     <version>3.2.6</version>
   </dependency>

   <dependency>
       <groupId>xdoclet</groupId>
       <artifactId>xdoclet-bea-module</artifactId>
       <version>1.2.3</version>
   </dependency>

  <dependency>
       <groupId>bea</groupId>
       <artifactId>wlclient</artifactId>
       <version>8.1.4</version>
   </dependency>

  <dependency>
       <groupId>bea</groupId>
       <artifactId>weblogic</artifactId>
       <version>8.1.4</version>
   </dependency>

Try to use the verbose mode of maven to see what is wrong.

Cheers,
Loïc

On 7/18/05, Loïc Lefèvre <[EMAIL PROTECTED]> wrote:
> I've also added the file maven.xml to invoke the maven xdoclet plugin.
> I'm using the last stable version of xdoclet 1.2.3.
> 
> I'll try to send you my configuration today.
> 
> Loïc
> 
> On 7/18/05, Vang Nguyen <[EMAIL PROTECTED]> wrote:
> >
> > Thanks for the advice Loic.  I've changed my configurations to:
> >
> > maven.xdoclet.ejbdoclet.weblogic.0=true
> > maven.xdoclet.ejbdoclet.weblogic.0.version=8.1
> > maven.xdoclet.ejbdoclet.weblogic.0.destDir=${maven.build.dir}/xdoclet/ejb/META-INF
> > maven.xdoclet.ejbdoclet.weblogic.0.datasource=jdbc/portal
> > maven.xdoclet.ejbdoclet.weblogic.0.createTables=Disabled
> > maven.xdoclet.ejbdoclet.weblogic.0.mergeDir=src/merge
> >
> > ...but still no files are coming out.  Did you have to do any particular 
> > configurations during the installation etc...  What version of the plugin 
> > are you using?  I'm using maven-xdoclet-plugin-1.2.jar.
> >
> > Cheers,
> >
> > Vang Nguyen
> > Enterprise Application Programmer
> > Department of Emergency Services
> > (61-7) 3247 8586
> >
> >
> > -----Original Message-----
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED] Behalf Of Loïc
> > Lefèvre
> > Sent: Sunday, 17 July 2005 5:29 AM
> > To: [email protected]
> > Subject: Re: [Xdoclet-user] generating weblogic 8.1 deployment
> > descriptor
> >
> >
> > Hello,
> > I have sucessfully generated a deployment descriptor for weblo 8.1
> > using the maven plugin.
> >
> > This has to be changed:
> > maven.xdoclet.ejbdoclet.weblogic.0.version=8.1
> >
> > and you also must change:
> > maven.xdoclet.ejbdoclet.weblogic.0.createTable=true
> >
> > to
> >
> > maven.xdoclet.ejbdoclet.weblogic.0.createTables=Disabled
> >
> > I think the parameter is case sensitiv (I remember having a lot of
> > problems with this).
> >
> > Loïc
> >
> > On 7/15/05, Vang Nguyen <[EMAIL PROTECTED]> wrote:
> > >
> > > Has anyone successfully generated a weblogic 8.1 deployment descriptor 
> > > using the Maven Plugin?  I am running xdoclet:ejbdoclet with the 
> > > following in my build.properties file:
> > >
> > > maven.xdoclet.ejbdoclet.weblogic.0=true
> > > maven.xdoclet.ejbdoclet.weblogic.0.version=6.1
> > > maven.xdoclet.ejbdoclet.weblogic.0.destDir=${maven.build.dir}/xdoclet/ejb/META-INF
> > > maven.xdoclet.ejbdoclet.weblogic.0.datasource=jdbc/portal
> > > maven.xdoclet.ejbdoclet.weblogic.0.createTable=true
> > > maven.xdoclet.ejbdoclet.jboss.0.mergeDir=src/merge
> > >
> > > I created my application using the complex genapp template and the JBoss 
> > > descriptor is generating, but not my weblogic ones.  I've spent days on 
> > > this so any help is appreciated.
> > >
> > > Regards,
> > >
> > > Vang Nguyen
> > > Enterprise Application Programmer
> > > Department of Emergency Services
> > > (61-7) 3247 8586
> > >
> > >
> > > This correspondence is for the named persons only.
> > > It may contain confidential or privileged information or both.
> > > No confidentiality or privilege is waived or lost by any mis transmission.
> > > If you receive this correspondence in error please delete it from your 
> > > system immediately and notify the sender.
> > > You must not disclose, copy or relay on any part of this correspondence, 
> > > if you are not the intended recipient.
> > > Any opinions expressed in this message are those of the individual sender 
> > > except where the sender expressly,
> > > and with the authority, states them to be the opinions of the Department 
> > > of Emergency Services, Queensland.
> > >
> > >
> > > -------------------------------------------------------
> > > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> > > from IBM. Find simple to follow Roadmaps, straightforward articles,
> > > informative Webcasts and more! Get everything you need to get up to
> > > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&opclick
> > > _______________________________________________
> > > xdoclet-user mailing list
> > > [email protected]
> > > https://lists.sourceforge.net/lists/listinfo/xdoclet-user
> > >
> >
> >
> > -------------------------------------------------------
> > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> > from IBM. Find simple to follow Roadmaps, straightforward articles,
> > informative Webcasts and more! Get everything you need to get up to
> > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=ick
> > _______________________________________________
> > xdoclet-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/xdoclet-user
> >
> > This correspondence is for the named persons only.
> > It may contain confidential or privileged information or both.
> > No confidentiality or privilege is waived or lost by any mis transmission.
> > If you receive this correspondence in error please delete it from your 
> > system immediately and notify the sender.
> > You must not disclose, copy or relay on any part of this correspondence, if 
> > you are not the intended recipient.
> > Any opinions expressed in this message are those of the individual sender 
> > except where the sender expressly,
> > and with the authority, states them to be the opinions of the Department of 
> > Emergency Services, Queensland.
> >
> >
> > -------------------------------------------------------
> > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
> > from IBM. Find simple to follow Roadmaps, straightforward articles,
> > informative Webcasts and more! Get everything you need to get up to
> > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&opclick
> > _______________________________________________
> > xdoclet-user mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/xdoclet-user
> >
>


-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id492&op=click
_______________________________________________
xdoclet-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to