org.apache.maven.plugins.release
Class AbstractReleaseMojo

java.lang.Object
  extended by org.apache.maven.plugin.AbstractMojo
      extended by org.apache.maven.plugins.release.AbstractReleaseMojo
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo
Direct Known Subclasses:
AbstractScmReleaseMojo, CleanReleaseMojo, PerformReleaseMojo, UpdateVersionsMojo

public abstract class AbstractReleaseMojo
extends org.apache.maven.plugin.AbstractMojo

Base class with shared configuration.

Version:
$Id: AbstractReleaseMojo.java 1420408 2012-12-11 21:06:38Z rfscholte $
Author:
Brett Porter

Field Summary
protected  org.apache.maven.project.MavenProject project
           
protected  ReleaseManager releaseManager
           
protected  org.apache.maven.execution.MavenSession session
           
 
Fields inherited from interface org.apache.maven.plugin.Mojo
ROLE
 
Constructor Summary
AbstractReleaseMojo()
           
 
Method Summary
protected  void addArgument(String argument)
          Add additional arguments.
protected  ReleaseDescriptor createReleaseDescriptor()
          Creates the release descriptor from the various goal parameters.
protected  String getAdditionalProfiles()
          Gets the comma separated list of additional profiles for the release build.
protected  File getBasedir()
           
 List<org.apache.maven.project.MavenProject> getReactorProjects()
          Gets the list of projects in the build reactor.
protected  ReleaseEnvironment getReleaseEnvironment()
          Gets the enviroment settings configured for this release.
protected  void mergeCommandLineConfig(ReleaseDescriptor config, ReleaseDescriptor sysPropertiesConfig)
          This method takes some of the release configuration picked up from the command line system properties and copies it into the release config object.
 void setBasedir(File basedir)
          Sets the base directory of the build.
 
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
 
Methods inherited from interface org.apache.maven.plugin.Mojo
execute
 

Field Detail

project

@Component
protected org.apache.maven.project.MavenProject project

releaseManager

@Component
protected ReleaseManager releaseManager

session

@Component
protected org.apache.maven.execution.MavenSession session
Since:
2.0
Constructor Detail

AbstractReleaseMojo

public AbstractReleaseMojo()
Method Detail

getReleaseEnvironment

protected ReleaseEnvironment getReleaseEnvironment()
Gets the enviroment settings configured for this release.

Returns:
The release environment, never null.

createReleaseDescriptor

protected ReleaseDescriptor createReleaseDescriptor()
Creates the release descriptor from the various goal parameters.

Returns:
The release descriptor, never null.

getAdditionalProfiles

protected String getAdditionalProfiles()
Gets the comma separated list of additional profiles for the release build.

Returns:
additional profiles to enable during release

getBasedir

protected final File getBasedir()

setBasedir

public void setBasedir(File basedir)
Sets the base directory of the build.

Parameters:
basedir - The build's base directory, must not be null.

getReactorProjects

public List<org.apache.maven.project.MavenProject> getReactorProjects()
Gets the list of projects in the build reactor.

Returns:
The list of reactor project, never null.

addArgument

protected void addArgument(String argument)
Add additional arguments.

Parameters:
argument - The argument to add, must not be null.

mergeCommandLineConfig

protected void mergeCommandLineConfig(ReleaseDescriptor config,
                                      ReleaseDescriptor sysPropertiesConfig)
This method takes some of the release configuration picked up from the command line system properties and copies it into the release config object.

Parameters:
config - The release configuration to merge the system properties into, must not be null.
sysPropertiesConfig - The configuration from the system properties to merge in, must not be null.


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