is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread sivarenati
hi frnds, Is it possible to create war and jar files with single pom.xml file. i have to create jar file for my project along with war. please help me on this if know how to do it. Regrds. Siva -- View this message in context:

Re: is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread Romain Manni-Bucau
hi, you can use maven assembly plugin to create the war for instance and let maven jar plugin create the jar. Another way is to define maven war plugin and maven jar plugin then use maven build helper plugin to attach both artifacts so yes that's possible - Romain 2012/7/6 sivarenati

Re: is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread Anders Hammar
Yes, although it's not good practice. One project should only produce one main artifact. To have the maven-war-plugin create an additional jar artifact with the java classes, have a look at this config parameter: http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#attachClasses

Re: is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread Manfred Moser
While it might be possible it is a bad idea that will cause your problems most likely... why do you want to do that? manfred On Fri, July 6, 2012 12:18 pm, Anders Hammar wrote: Yes, although it's not good practice. One project should only produce one main artifact. To have the

Re: is it possible to creating war and jar files with single POM.xml file?

2012-07-06 Thread Anders Hammar
Yes, that's what I meant. It is much better to have two modules - one jar project and one war project (with a dependency to the jar artifact). /Anders On Fri, Jul 6, 2012 at 9:59 PM, Manfred Moser manf...@mosabuam.com wrote: While it might be possible it is a bad idea that will cause your