If you are building an web application (war or ear) then I would take a look
at the maven-war-plugin and maven-ear-plugin. Here's an example:
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
<warSourceDirectory>
${basedir}/target/jwsc-generated/jws
</warSourceDirectory>
<webXml>${basedir}/src/main/webapp/web.xml</webXml>
</configuration>
</plugin>
--
View this message in context:
http://maven.40175.n5.nabble.com/Tar-pom-xml-dependencies-Maven-Assembly-Plugin-tp3335797p3336789.html
Sent from the Maven - Users mailing list archive at Nabble.com.