Sorry, I will try to split my questions between dev concerns and user related
questions. Thank you for your hint with the correct include-format. Beside
that I solved my problems with the dependency-maven-plugin as suggested
on this list.
regards, carsten
On 23 May 2006 at 11:01, John Casey wro
This is definitely a thread for the users' list, not the dev list.
Having said that, the assembly plugin doesn't currently support wildcards in
the dependencySet includes/excludes, for one thing. For another, those
includes and excludes (in the dependencySet) are meant to refer to the
artifacts b
I have not used the assembly plugin further than creating a 'jar-with-dependencies'. You
should move this thread to the users list. The audience that can help is probably greater
there than on the dev list.
-Tim
Carsten Karkola schrieb:
What I tried to do is, to filter dependencies and unpack
What I tried to do is, to filter dependencies and unpack some of them, simply
copy others to
some dirs, like:
1. two dependencies with type zip
/lib
true
runtime
*.zip
2. a jar
/
false
runtime
my
Thank you John and Tim, now "mvn package" creates the assembly.
But there seems to be a problem with the dependencies, if I use
-DdescriptorId=jar-with-dependencies
I get all the dependend jars but my own assembly descriptor simply ignores the
entry
/
true
runtime
Using the newest release of the assembly plugin, you can bind the 'attached'
goal directly to the package phase of your lifecycle, and avoid building
twice...so:
[...]
attached
[...]
HTH,
john
On 5/19/06, Tim Kettler <[EMAIL PROTECTED]> wrote:
Can't you just bind the plugin to a lifecycle
Can't you just bind the plugin to a lifecycle phase in your pom?:
org.apache.maven.plugins
maven-assembly-plugin
package
jar-with-dependencies
assembly
Hope this helps
-Tim
Carsten Karkola schrieb:
Hel
Hello,
the usage of the assembly plugin is only possible via
mvn assembly:assembly
Is there a possibility to define something like
assembly
So I could do a
mvn package
in my multi-project directory and would get the needed assemblies without
special calls of some subprojects, where the ass