Re: Need a separate jar from war in assembly

2009-09-08 Thread James Russo
Jim Collings wrote: I've created a xx-weblogic module. That part was easy. Problem is that there is no lib dir. Maven doesn't copy libs to the source tree in accordance with the idea that they should not be in the version control system. So the question remains... how do I get the jar from the

Re: Need a separate jar from war in assembly

2009-09-04 Thread Jim Collings
This is still a problem. Still not working. Clues anyone? On Mon, Aug 31, 2009 at 10:50 AM, Jim Collingsjlistn...@gmail.com wrote: BTW, I've tried this by using a dependancySet in the descriptor. This didn't work out. - To

Re: Need a separate jar from war in assembly

2009-09-04 Thread Jim Collings
  So, the recommended way is to have something like this, correct?   xx-weblogic (all code for web-application)   xx-webapp (the actual war, containing src/main/webapp, src/main/resources, but no src/main. Code is really included though .jar files in lib). I've created a xx-weblogic module.

Re: Need a separate jar from war in assembly

2009-08-31 Thread Jim Collings
The question in question was mine rather than Mr. Russo's. ;-) So I've created a SunWebserver module and added the jar as a dependency. What maven is producing now is nothing when I use the compile goal and a jar with manifest.mf, pom.xml, pom.properties etc. Still no jar though. Not even as a

Re: Need a separate jar from war in assembly

2009-08-31 Thread Jim Collings
BTW, I've tried this by using a dependancySet in the descriptor. This didn't work out. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Need a separate jar from war in assembly

2009-08-28 Thread Jim Collings
So I have a jar that needs to be in an assembly but not in the war file. It's a jdbc driver for the appserver. How can I get it into the compressed archive but outside of the *.war file? - To unsubscribe, e-mail:

Re: Need a separate jar from war in assembly

2009-08-28 Thread Wendy Smoak
On Fri, Aug 28, 2009 at 1:06 PM, Jim Collingsjlistn...@gmail.com wrote: So I have a jar that needs to be in an assembly but not in the war file. It's a jdbc driver for the appserver. How can I get it into the compressed archive but outside of the *.war file? How is your project structured now?

Re: Need a separate jar from war in assembly

2009-08-28 Thread James Russo
Hello, So, the recommended way is to have something like this, correct? xx-weblogic (all code for web-application) xx-webapp (the actual war, containing src/main/webapp, src/main/resources, but no src/main. Code is really included though .jar files in lib). -jr Wendy Smoak wrote:

Re: Need a separate jar from war in assembly

2009-08-28 Thread Wendy Smoak
Yes, it's common to have the code in a separate module from the webapp. It makes it easier to do unit testing of the code separately from integration testing the webapp. I'm not sure how that relates to your original question though. I see the jar module and the war module... where is the