All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugin.source.AggregatorSourceJarMojo Maven / Gradle / Ivy

There is a newer version: 4.0.0-beta-1
Show newest version
package org.apache.maven.plugin.source;

import org.apache.maven.plugin.MojoExecutionException;

/**
 * Aggregrate sources for all modules in a aggregator project.
 *
 * @goal aggregate
 * @phase package
 * @aggregator
 * @execute phase="generate-sources"
 */
public class AggregatorSourceJarMojo
    extends SourceJarMojo
{
    /**
     * @see org.apache.maven.plugin.AbstractMojo#execute()
     */
    public void execute()
        throws MojoExecutionException
    {
        if ( "pom".equals( project.getPackaging() ) )
        {
            packageSources( reactorProjects );
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy