Re: Devoxx 2010

2010-10-25 Thread Paul Merlin
I'll be there the whole week. See ya /Paul Quoting Arnaud Héritier aherit...@gmail.com: Hi all, Who is going at Devoxx this this year ? I'll be here all the week. I hope I'll met some of you. Cheers, Arnaud Héritier aherit...@apache.org

Creating an ear file from a combination of two other ears

2010-10-25 Thread Varsha Hardikar
I am doing a project where I have to build an ear file (lets call it EAR3) from a combination of two other ears (EAR1 and EAR2). EAR3 will have some libraries and war files that are copied from EAR1 and EAR2. Additionally, I want to remove some jars from the libraries and war files from EAR3

Re: Creating an ear file from a combination of two other ears

2010-10-25 Thread Anders Hammar
Wrong mailing list. Use the Maven users list for this type of questions. http://maven.apache.org/mail-lists.html /Anders On Sun, Oct 24, 2010 at 16:21, Varsha Hardikar vhardi...@cybersource.comwrote: I am doing a project where I have to build an ear file (lets call it EAR3) from a combination

Re: Creating an ear file from a combination of two other ears

2010-10-25 Thread Stephane Nicoll
Are the two others ears built with Maven as well? If so, I would try to share the dependencies between 12 and 3 somehow and rebuild the whole EAR instead of merging it. You could use something like the dependency plugin to unpack the dependency and excluding some files but there's nothing that

Re: Creating an ear file from a combination of two other ears

2010-10-25 Thread Vincent Latombe
I'm having a similar requirement (kind of ear overlay feature). I agree with sharing the dependencies, however you still have to repeat the ear configuration (context-roots mappings etc.) if you have 2 different ears. My use case is the following : - for development we use an ear with a few wars

Re: Creating an ear file from a combination of two other ears

2010-10-25 Thread Stephane Nicoll
Well, I always thought it was a corner case but if it's not, raise an issue in Jira and we'll try to implement it. Of course a patch is always welcome :) Cheers, S. On Mon, Oct 25, 2010 at 10:46 AM, Vincent Latombe vincent.lato...@gmail.com wrote: I'm having a similar requirement (kind of ear