You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by UseTheFork <jv...@gmail.com> on 2009/09/12 20:13:11 UTC

Source code distribution plugin?

Hi, 

Is there a Maven puglin to distribute the source code of a project (for
example, to create a source.zip artifact)? I can't find anything with
googling.

Thanks,

UseTheFork
-- 
View this message in context: http://www.nabble.com/Source-code-distribution-plugin--tp25416872p25416872.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Source code distribution plugin?

Posted by UseTheFork <jv...@gmail.com>.
How did I miss that? Thanks !!!

UseTheFork
-- 
View this message in context: http://www.nabble.com/Source-code-distribution-plugin--tp25416872p25417046.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Source code distribution plugin?

Posted by David Hoffer <dh...@gmail.com>.
Yes, this is standard feature of maven.

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.0.4</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

-Dave

On Sat, Sep 12, 2009 at 12:13 PM, UseTheFork <jv...@gmail.com> wrote:

>
> Hi,
>
> Is there a Maven puglin to distribute the source code of a project (for
> example, to create a source.zip artifact)? I can't find anything with
> googling.
>
> Thanks,
>
> UseTheFork
> --
> View this message in context:
> http://www.nabble.com/Source-code-distribution-plugin--tp25416872p25416872.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>