On Mon, Sep 27, 2010 at 11:00 AM, <[email protected]> wrote: > we have migrated our ant structure to maven projects and need to keep the > existing distributions for legacy reasons. > > So what I'm looking for is a way to easily include all source files from the > multimodule project in a zip which is given to the clients - there is always > the way of having an external process grepping all source-jars and pack them > together - I just was wondering if such thing already exists in maven. > > with the javadocs its the same. They dont need to be in the same zip file
You can use the Assembly Plugin to create any sort of file distribution you need -- start here: http://maven.apache.org/plugins/maven-assembly-plugin/ This is best done as an additional module in your project. There are many different ways to configure it, so give it a try and come back if you have more questions. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
