reactor:resume

Full name:

org.apache.maven.plugins:maven-reactor-plugin:1.0:resume

Description:

Goal to resume building a reactor at a certain point

Attributes:

  • Requires a Maven 2.0 project to be executed.
  • Executes as an aggregator plugin.
  • Binds by default to the lifecycle phase: process-sources.

Required Parameters

Name Type Since Description
continueFromFolder File - The project folder from which we'll resume
Default value is: null.
continueFromProject String - The artifact from which we'll resume, e.g. "com.mycompany:foo" or just "foo"
Default value is: null.

Optional Parameters

Name Type Since Description
baseDir File - Location of the file.
collectedProjects List - (no description)
continueFromGroup String - (no description)
Default value is: ${project.groupId}.
goals String - Goals to run on subproject
Default value is: install.
printOnly boolean - Don't really do anything; just print a message that describes what the command would have done

Parameter Details

baseDir:

Location of the file.
  • Type: java.io.File
  • Required: No
  • Expression: ${basedir}

collectedProjects:

(no description)
  • Type: java.util.List
  • Required: No
  • Expression: ${project.collectedProjects}

continueFromFolder:

The project folder from which we'll resume
  • Type: java.io.File
  • Required: Yes
  • Expression: ${from}
  • Default: null

continueFromGroup:

(no description)
  • Type: java.lang.String
  • Required: No
  • Expression: ${make.group}
  • Default: ${project.groupId}

continueFromProject:

The artifact from which we'll resume, e.g. "com.mycompany:foo" or just "foo"
  • Type: java.lang.String
  • Required: Yes
  • Expression: ${fromArtifact}
  • Default: null

goals:

Goals to run on subproject
  • Type: java.lang.String
  • Required: No
  • Expression: ${make.goals}
  • Default: install

printOnly:

Don't really do anything; just print a message that describes what the command would have done
  • Type: boolean
  • Required: No
  • Expression: ${make.printOnly}