Re: Plugin to create source distribution?

2007-01-31 Thread Dennis Lundberg
Phillip Rhodes wrote: I would like to create a distribution of my project. I would like the distribution to include sources, maven files, etc... Extra credit for zip and gz support! Can someone point me to a plugin that would come close to this functionality? Thanks! Phillip If you

Re: Plugin to create source distribution?

2007-01-31 Thread Arnaud Bailly
Dennis Lundberg [EMAIL PROTECTED] writes: If you just need the source files you can use the maven-source-plugin: http://maven.apache.org/plugins/maven-source-plugin/ -- Dennis Lundberg Assembly plugin: http://maven.apache.org/plugins/maven-assembly-plugin/ -- OQube software

Re: Plugin to create source distribution?

2007-01-30 Thread Tony Ambrozie
Have you tried the assembly plugin (maven-assembly-plugin, version 2.2 or 2.2-SNAPSHOT if you want whole project functionality)? On 1/30/07, Phillip Rhodes [EMAIL PROTECTED] wrote: I would like to create a distribution of my project. I would like the distribution to include sources, maven

RE: Plugin to create source distribution?

2007-01-30 Thread Greg Jones
Phillip, Have a look at the assembly plugin: http://maven.apache.org/plugins/maven-assembly-plugin/ In particular, take a look at the predefined descriptors: http://maven.apache.org/plugins/maven-assembly-plugin/descriptor-refs.html The src descriptor should be what you're looking for.