Re: Creating WebSphere Specific Config Files

2007-05-09 Thread David J. M. Karlsen
Bala Rajamani skrev: Hello, I would like to create WebSphere specific application.xml and related ibm-application-bnd.xmi and MANIFEST.MF files. How do I this achieve this with maven? The IBM specific deploymentfiles (sigh) can be generated by the xdoclet plugin, sadly xdoclet does not

Re: Creating WebSphere Specific Config Files

2007-05-09 Thread Eric Helfrich
XDoclet works ok for Websphere 6.0. XDoclet 2 seems to be a no go with Websphere --at least for a while -- unless they have hidden the documentation really well. The ejbs and mdb's we built give us no trouble under WAS 6.0. XDoclet does have trouble with multi-module builds as it seems to

Re: Creating WebSphere Specific Config Files

2007-05-08 Thread Regis Decamps
[EMAIL PROTECTED] wrote: Hello, I would like to create WebSphere specific application.xml and related ibm-application-bnd.xmi and MANIFEST.MF files. How do I this achieve this with maven? I tried maven-ear-plugin but unable to create the WebSphere specific files. Also I'm thinking of using

RE: Creating WebSphere Specific Config Files

2007-05-08 Thread hermod.opstvedt
Hi If its a WAS5, there is a plugin for it in the codehaus sandbox. Hermod -Original Message- From: Regis Decamps [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 1:15 PM To: Maven Users List Subject: Re: Creating WebSphere Specific Config Files [EMAIL PROTECTED] wrote: Hello

Re: Creating WebSphere Specific Config Files

2007-05-08 Thread Bala Rajamani
As per your suggestion, I tried the following the EAR was created with the required .XMI files. build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-ear-plugin/artifactId configuration earSourceDirectory

Re: Creating WebSphere Specific Config Files

2007-05-08 Thread Wayne Fay
What (exactly) do you want to do to the file with Maven? There are ways to alter the contents of files through filtering, so that might work for you. But we need to know more about what you are hoping to achieve. Wayne On 5/8/07, Bala Rajamani [EMAIL PROTECTED] wrote: As per your suggestion, I

Re: Creating WebSphere Specific Config Files

2007-05-08 Thread Bala Rajamani
Hello Wayne, Before creating EAR, I would like to change some content with in the XMI file... thinking of having some variables and replacing through Maven during build time. Thanks again.

Re: Creating WebSphere Specific Config Files

2007-05-08 Thread Wayne Fay
OK. As suggested, you can do this with filtering. This is pretty well documented on the Maven site. Wayne On 5/8/07, Bala Rajamani [EMAIL PROTECTED] wrote: Hello Wayne, Before creating EAR, I would like to change some content with in the XMI file... thinking of having some variables and

Creating WebSphere Specific Config Files

2007-05-07 Thread Bala Rajamani
Hello, I would like to create WebSphere specific application.xml and related ibm-application-bnd.xmi and MANIFEST.MF files. How do I this achieve this with maven? I tried maven-ear-plugin but unable to create the WebSphere specific files. Also I'm thinking of using some copy plugins (if one

Re: Creating WebSphere Specific Config Files

2007-05-07 Thread Mick Knutson
are you just trying to include the xmi file and application.xml after you edit it? If so, just add those files into your ./module/src/main/resources directory You can then also filter some properties at build time. On 5/7/07, Bala Rajamani [EMAIL PROTECTED] wrote: Hello, I would like to