Re: Tar pom.xml dependencies - Maven Assembly Plugin?

2011-01-11 Thread Anders Hammar
It looks like you have a pom project, but have declared to use the project's artifact. A pom project only have the pom artifact, so that might be the reason of the error message. Try declaring useProjectArtifact as false. /Anders On Tue, Jan 11, 2011 at 22:43, jaybytez wrote: > > Thanks...I wen

Re: Tar pom.xml dependencies - Maven Assembly Plugin?

2011-01-11 Thread jaybytez
Thanks...I went through the example and created a bin.xml that represented the jar-with-dependencies example. http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/plugins/mave

RE: Tar pom.xml dependencies - Maven Assembly Plugin?

2011-01-11 Thread khaido
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: maven-war-plugin

Re: Tar pom.xml dependencies - Maven Assembly Plugin?

2011-01-11 Thread Anders Hammar
Yes, the assembly plugin is they way to do this. Declare the packaging as "pom". There are several examples at the plugin's homepage, or google for some live ones. /Anders On Tue, Jan 11, 2011 at 02:11, jaybytez wrote: > > Is the Maven Assembly Plugin the right way for me to define a pom.xml and