Hi Warren

Please attach any patches you have to issues in JIRA. They tend to get
lost when sent to our mailing lists due to the amount of traffic. The
address to JIRA for maven-jar-plugin is:

http://jira.codehaus.org/browse/MJAR

On 2012-01-17 14:28, Warren Crossing wrote:
> Index: src/main/java/org/apache/maven/plugin/jar/AbstractJarMojo.java
> ===================================================================
> --- src/main/java/org/apache/maven/plugin/jar/AbstractJarMojo.java    
> (revision 1232405)
> +++ src/main/java/org/apache/maven/plugin/jar/AbstractJarMojo.java    
> (working copy)
> @@ -119,7 +119,17 @@
>       */
>      private boolean useDefaultManifestFile;
> 
> +
>      /**
> +     * Set this to <code>Fasle</code> to disable the attach of the
> <code>jar</code>.
> +     *
> +     * @parameter expression="${jar.attach}" default-value="true"
> +     *
> +     * @since 2.2
> +     */
> +    private boolean attach;
> +
> +    /**
>       * @component
>       */
>      private MavenProjectHelper projectHelper;
> @@ -235,11 +245,12 @@
>          File jarFile = createArchive();
> 
>          String classifier = getClassifier();
> -        if ( classifier != null )
> +        if ( classifier != null && attach)
>          {
>              projectHelper.attachArtifact( getProject(), getType(),
> classifier, jarFile );
>          }
> -        else
> +        else if(attach)
>          {
>              getProject().getArtifact().setFile( jarFile );
>          }


-- 
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org

Reply via email to