org.apache.maven.plugin.install
Class InstallFileMojo

java.lang.Object
  extended by org.apache.maven.plugin.AbstractMojo
      extended by org.apache.maven.plugin.install.AbstractInstallMojo
          extended by org.apache.maven.plugin.install.InstallFileMojo
All Implemented Interfaces:
ContextEnabled, Mojo

@Mojo(name="install-file",
      requiresProject=false,
      aggregator=true,
      threadSafe=true)
public class InstallFileMojo
extends AbstractInstallMojo

Installs a file in the local repository.

Version:
$Id: InstallFileMojo.html 846653 2013-01-14 19:34:23Z rfscholte $
Author:
Brett Porter

Field Summary
protected  String artifactId
          ArtifactId of the artifact to be installed.
protected  String classifier
          Classifier type of the artifact to be installed.
protected  String groupId
          GroupId of the artifact to be installed.
protected  String packaging
          Packaging type of the artifact to be installed.
protected  String version
          Version of the artifact to be installed.
 
Fields inherited from class org.apache.maven.plugin.install.AbstractInstallMojo
artifactFactory, createChecksum, installer, localRepository, md5Digester, sha1Digester, updateReleaseInfo
 
Fields inherited from interface org.apache.maven.plugin.Mojo
ROLE
 
Constructor Summary
InstallFileMojo()
           
 
Method Summary
 void execute()
           
 File getLocalRepositoryPath()
           
 void setLocalRepositoryPath(File theLocalRepositoryPath)
           
 
Methods inherited from class org.apache.maven.plugin.install.AbstractInstallMojo
getLocalRepoFile, getLocalRepoFile, installChecksums, installChecksums
 
Methods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

groupId

@Parameter(property="groupId")
protected String groupId
GroupId of the artifact to be installed. Retrieved from POM file if one is specified.


artifactId

@Parameter(property="artifactId")
protected String artifactId
ArtifactId of the artifact to be installed. Retrieved from POM file if one is specified.


version

@Parameter(property="version")
protected String version
Version of the artifact to be installed. Retrieved from POM file if one is specified.


packaging

@Parameter(property="packaging")
protected String packaging
Packaging type of the artifact to be installed. Retrieved from POM file if one is specified.


classifier

@Parameter(property="classifier")
protected String classifier
Classifier type of the artifact to be installed. For example, "sources" or "javadoc". Defaults to none which means this is the project's main artifact.

Since:
2.2
Constructor Detail

InstallFileMojo

public InstallFileMojo()
Method Detail

execute

public void execute()
             throws MojoExecutionException,
                    MojoFailureException
Throws:
MojoExecutionException
MojoFailureException
See Also:
Mojo.execute()

getLocalRepositoryPath

public File getLocalRepositoryPath()
Returns:
the localRepositoryPath

setLocalRepositoryPath

public void setLocalRepositoryPath(File theLocalRepositoryPath)
Parameters:
theLocalRepositoryPath - the localRepositoryPath to set


Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.