Re: How to use maven to gather all (or some) dependent jar files

2009-05-12 Thread Steve Lihn
Copy-dependencies and the assembly plugin are what I am looking for. I currently use a home grown perl script to do these tasks. It will be very nice once I can integrate all these tasks into maven. Thanks for the suggestions. Steve On Mon, May 11, 2009 at 9:08 AM, Joe Hindsley wrote: > The way

Re: How to use maven to gather all (or some) dependent jar files

2009-05-11 Thread Joe Hindsley
The way I've done this in the past is to use the assembly plugin to generate a distribution zip/tar. The unpacked structure looks like: /bin /lib /conf /log In the bin directory, you would add a shell script that sets up the runtime environment and invokes the mule runtime. The lib directory

RE: How to use maven to gather all (or some) dependent jar files

2009-05-05 Thread Andrei Solntsev
, May 06, 2009 6:10 AM To: Maven Users List Subject: How to use maven to gather all (or some) dependent jar files Hi, When maven builds a project, it figures out all the dependent jar files, adds them to the classpath, produces the project's jar file under target/. My question is -- is there a w

How to use maven to gather all (or some) dependent jar files

2009-05-05 Thread Steve Lihn
Hi, When maven builds a project, it figures out all the dependent jar files, adds them to the classpath, produces the project's jar file under target/. My question is -- is there a way to ask maven also puts all (or some) those dependent jar files under target/ too. The origin of the issue is tha