org.codehaus.mojo.buildhelper.RemoveLocalArtifactMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-helper-maven-plugin Show documentation
Show all versions of build-helper-maven-plugin Show documentation
This plugin contains various small independent goals to assist with Maven build lifecycle
package org.codehaus.mojo.buildhelper;
/*
* The MIT License
*
* Copyright (c) 2004, The Codehaus
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
import java.io.File;
import java.io.IOException;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.FileUtils;
/**
* Remove project's artifacts from local repository. Useful to keep only one copy of large local snapshot, for example:
* installer, for disk space optimization purpose.
*
* @author Dan T. Tran
* @version $Id$
* @since 1.1
*/
@Mojo( name = "remove-project-artifact", defaultPhase = LifecyclePhase.PACKAGE, threadSafe = true )
public class RemoveLocalArtifactMojo
extends AbstractMojo
{
/**
* When true, remove all built artifacts including all versions. When false, remove all built artifacts of this
* project version.
*
* @since 1.1
*/
@Parameter( defaultValue = "true", property = "buildhelper.removeAll" )
private boolean removeAll;
/**
* Indicates whether the build will continue even if there are removal errors.
*
* @since 1.6
*/
@Parameter( defaultValue = "true", property = "buildhelper.failOnError" )
private boolean failOnError;
/**
* @since 1.1
*/
@Parameter( readonly = true, defaultValue = "${project}" )
private MavenProject project;
/**
* @since 1.1
*/
@Parameter( defaultValue = "${localRepository}", readonly = true )
private ArtifactRepository localRepository;
public void execute()
throws MojoFailureException
{
File localArtifactFile =
new File( localRepository.getBasedir(), localRepository.pathOf( project.getArtifact() ) );
File localArtifactDirectory = localArtifactFile.getParentFile();
if ( removeAll )
{
localArtifactDirectory = localArtifactDirectory.getParentFile();
}
try
{
FileUtils.deleteDirectory( localArtifactDirectory );
if ( getLog().isInfoEnabled() )
{
getLog().info( localArtifactDirectory.getAbsolutePath() + " removed." );
}
}
catch ( IOException e )
{
final String failureMessage = "Cannot delete " + localArtifactDirectory;
if ( failOnError )
{
throw new MojoFailureException( failureMessage );
}
else
{
getLog().warn( failureMessage );
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy