Re: Maven 2 and xdoclet 1.2 and sample

2007-01-24 Thread Petar Tahchiev

On 24/01/07, Vidya Mahavadi [EMAIL PROTECTED] wrote:


Hi everyone,

I am starting to work on Maven, xdoclet now. I am looking a for a plugin
to work with Maven 2 and xdoclet 1.2 and sample to get me started. Can
anyone please help me?

Thanks,

This e-mail is subject to a disclaimer, available at

http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html


This is what I got from google:


http://docs.codehaus.org/display/XDOCLET/Maven2+plugin
http://mojo.codehaus.org/xdoclet-maven-plugin/xdoclet-mojo.html
http://xdoclet.sourceforge.net/xdoclet/maven-plugin.html

I think the second one is the best that fits you.

--
Regards, Petar!
Karlovo, Bulgaria.


RE: Maven 2 and xdoclet 1.2 and sample

2007-01-24 Thread Dário Luís Coneglian Oliveros
Here it goes.
...
build
  plugins
plugin
  groupIdorg.codehaus.mojo/groupId
  artifactIdxdoclet-maven-plugin/artifactId
  executions
execution
  phasegenerate-sources/phase
  goals
goalxdoclet/goal
  /goals
  configuration
tasks
  ejbdoclet
ejbspec = 2.0
ejbClassNameSuffix = Bean
destdir = ${project.build.directory}/generated-sources/xdoclet
verbose = true
fileset dir = ${project.build.sourceDirectory} includes = 
**/**Bean.java/
deploymentdescriptor destdir = 
${project.build.outputDirectory}/META-INF/
jboss destdir = ${project.build.outputDirectory}/META-INF/
homeinterface/
remoteinterface/
localinterface/
localhomeinterface/
utilobject/
entitypk/
  /ejbdoclet
/tasks
  /configuration
/execution
  /executions
/plugin
  /plugins
/build
...

Hope it helps.
Dário

-Original Message-
From: Vidya Mahavadi [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 24 de janeiro de 2007 10:27
To: users@maven.apache.org
Subject: Maven 2 and xdoclet 1.2 and sample


Hi everyone,

I am starting to work on Maven, xdoclet now. I am looking a for a plugin 
to work with Maven 2 and xdoclet 1.2 and sample to get me started. Can 
anyone please help me?

Thanks,

This e-mail is subject to a disclaimer, available at
http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Maven 2 and xdoclet 1.2 and sample

2007-01-24 Thread Vidya Mahavadi
Hi,
Thanks for your response,
That really works. I am trying to create a webservice with an ejb. I am 
using the following configuraion and xdoclet in the ejb. What plugin do I 
need to put pom.xml to generate wsdl file from the xdoclet..

Cofiguration:
Maven2, Xdoclet1.2, JBoss3.2.5, Axis1.1, Jboss.net

Xdoclet:
/**
 * @ejb:beanname=AmendmentsService
 *  jndi-name=AmendmentsService
 *  type=Stateless
 *  view-type=both
 *
 * @ejb:ejb-ref ejb-name=AmendmentsService
 *  view-type=remote
 *  ref-name=ejb/AmendmentsService
 *
 * @ejb:util generate=physical
 *
 *
 * @jboss.ejb-ref-jndi  ref-name=AmendmentsService
 *  jndi-name=AmendmentsService
 *
 * @jboss-net:web-service   urn=AmendmentsService
 *
 **/


Thanks,




Dário Luís Coneglian Oliveros [EMAIL PROTECTED] 
24/01/2007 15:35
Please respond to
Maven Users List users@maven.apache.org


To
Maven Users List users@maven.apache.org
cc

Subject
RE: Maven 2 and xdoclet 1.2 and sample






Here it goes.
...
build
  plugins
plugin
  groupIdorg.codehaus.mojo/groupId
  artifactIdxdoclet-maven-plugin/artifactId
  executions
execution
  phasegenerate-sources/phase
  goals
goalxdoclet/goal
  /goals
  configuration
tasks
  ejbdoclet
ejbspec = 2.0
ejbClassNameSuffix = Bean
destdir = 
${project.build.directory}/generated-sources/xdoclet
verbose = true
fileset dir = ${project.build.sourceDirectory} includes 
= **/**Bean.java/
deploymentdescriptor destdir = 
${project.build.outputDirectory}/META-INF/
jboss destdir = 
${project.build.outputDirectory}/META-INF/
homeinterface/
remoteinterface/
localinterface/
localhomeinterface/
utilobject/
entitypk/
  /ejbdoclet
/tasks
  /configuration
/execution
  /executions
/plugin
  /plugins
/build
...

Hope it helps.
Dário

-Original Message-
From: Vidya Mahavadi [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 24 de janeiro de 2007 10:27
To: users@maven.apache.org
Subject: Maven 2 and xdoclet 1.2 and sample


Hi everyone,

I am starting to work on Maven, xdoclet now. I am looking a for a plugin 
to work with Maven 2 and xdoclet 1.2 and sample to get me started. Can 
anyone please help me?

Thanks,

This e-mail is subject to a disclaimer, available at
http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



This e-mail is subject to a disclaimer, available at
http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html



RE: Maven 2 and xdoclet 1.2 and sample

2007-01-24 Thread Dário Luís Coneglian Oliveros
I haven´t tried that before, but I guess you have to use wseedoclet in your 
configuration in the same way as ejbdoclet.
Dário

-Original Message-
From: Vidya Mahavadi [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 24 de janeiro de 2007 12:20
To: Maven Users List
Subject: RE: Maven 2 and xdoclet 1.2 and sample


Hi,
Thanks for your response,
That really works. I am trying to create a webservice with an ejb. I am 
using the following configuraion and xdoclet in the ejb. What plugin do I 
need to put pom.xml to generate wsdl file from the xdoclet..

Cofiguration:
Maven2, Xdoclet1.2, JBoss3.2.5, Axis1.1, Jboss.net

Xdoclet:
/**
 * @ejb:beanname=AmendmentsService
 *  jndi-name=AmendmentsService
 *  type=Stateless
 *  view-type=both
 *
 * @ejb:ejb-ref ejb-name=AmendmentsService
 *  view-type=remote
 *  ref-name=ejb/AmendmentsService
 *
 * @ejb:util generate=physical
 *
 *
 * @jboss.ejb-ref-jndi  ref-name=AmendmentsService
 *  jndi-name=AmendmentsService
 *
 * @jboss-net:web-service   urn=AmendmentsService
 *
 **/


Thanks,




Dário Luís Coneglian Oliveros [EMAIL PROTECTED] 
24/01/2007 15:35
Please respond to
Maven Users List users@maven.apache.org


To
Maven Users List users@maven.apache.org
cc

Subject
RE: Maven 2 and xdoclet 1.2 and sample






Here it goes.
...
build
  plugins
plugin
  groupIdorg.codehaus.mojo/groupId
  artifactIdxdoclet-maven-plugin/artifactId
  executions
execution
  phasegenerate-sources/phase
  goals
goalxdoclet/goal
  /goals
  configuration
tasks
  ejbdoclet
ejbspec = 2.0
ejbClassNameSuffix = Bean
destdir = 
${project.build.directory}/generated-sources/xdoclet
verbose = true
fileset dir = ${project.build.sourceDirectory} includes 
= **/**Bean.java/
deploymentdescriptor destdir = 
${project.build.outputDirectory}/META-INF/
jboss destdir = 
${project.build.outputDirectory}/META-INF/
homeinterface/
remoteinterface/
localinterface/
localhomeinterface/
utilobject/
entitypk/
  /ejbdoclet
/tasks
  /configuration
/execution
  /executions
/plugin
  /plugins
/build
...

Hope it helps.
Dário

-Original Message-
From: Vidya Mahavadi [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 24 de janeiro de 2007 10:27
To: users@maven.apache.org
Subject: Maven 2 and xdoclet 1.2 and sample


Hi everyone,

I am starting to work on Maven, xdoclet now. I am looking a for a plugin 
to work with Maven 2 and xdoclet 1.2 and sample to get me started. Can 
anyone please help me?

Thanks,

This e-mail is subject to a disclaimer, available at
http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



This e-mail is subject to a disclaimer, available at
http://www.rmb.co.za/web/elements.nsf/online/disclaimer-communications.html


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]