Package org.apache.maven.shared.invoker
Class DefaultInvocationRequest
java.lang.Object
org.apache.maven.shared.invoker.DefaultInvocationRequest
- All Implemented Interfaces:
InvocationRequest
Specifies the parameters used to control a Maven invocation.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.maven.shared.invoker.InvocationRequest
InvocationRequest.CheckSumPolicy, InvocationRequest.ReactorFailureBehavior -
Field Summary
Fields inherited from interface org.apache.maven.shared.invoker.InvocationRequest
NO_TIMEOUT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdd a raw argument to Maven cli command at the end of other arguments.addArgs(Collection<String> args) Add a raw arguments list to Maven cli command at the end of other arguments.addShellEnvironment(String name, String value) Adds the specified environment variable to the Maven invocation.getArgs()List of raw line arguments which will be passed to cli.getBaseDirectory.getBaseDirectory(File defaultDirectory) Gets the path to the base directory of the POM for the Maven invocation.Get the current set builder strategy id equivalent of--builder id.getErrorHandler(InvocationOutputHandler defaultHandler) Gets the handler used to capture the error output from the Maven build.Gets the checksum mode of the Maven invocation.Gets the path to the global settings for the Maven invocation.Alternate path for the global toolchains file Note.getGoals()Getter for the fieldgoals.getInputStream(InputStream defaultStream) Gets the input stream used to provide input for the invoked Maven build.Getter for the fieldjavaHome.getLocalRepositoryDirectory(File defaultDirectory) Gets the path to the base directory of the local repository to use for the Maven invocation.Get the customized File of the Maven executable.Gets the path to the base directory of the Maven installation used to invoke Maven.Getter for the fieldmavenOpts.getOutputHandler(InvocationOutputHandler defaultHandler) Gets the handler used to capture the standard output from the Maven build.Getter for the fieldpomFile.Gets the (unqualified) filename of the POM for the Maven invocation.Gets the profiles for the Maven invocation.A list of specified reactor projects to build instead of all projects.Getter for the fieldproperties.getReactorFailureBehavior.Get the value ofresume-fromGetter for the fieldshellEnvironments.Get the value of thethreadsargument.intgetTimeoutInSeconds.Gets the path to the custom toolchains fileIndicates the update snapshots policy.Gets the path to the user settings for the Maven invocation.booleanGet the value of thealso-makeargument.booleanGet the value of thealso-make-dependentsbooleanisBatchMode.booleanisDebug()isDebug.booleanIndicates whether Maven should check for plugin updates.booleanGet the value of theno-transfer-progressargument.booleanisOffline.booleanisQuiet()Gets the quiet mode of the Maven invocation.booleanisRecursive.booleanisShellEnvironmentInherited.booleanisShowErrors.booleanisShowVersion.booleanisUpdateSnapshots.setAlsoMake(boolean alsoMake) Enable the 'also make' mode.setAlsoMakeDependents(boolean alsoMakeDependents) Enable the 'also make dependents' mode.setBaseDirectory(File basedir) Sets the path to the base directory of the POM for the Maven invocation.setBatchMode(boolean interactive) Sets the interaction mode of the Maven invocation.setBuilder(String id) The id of the build strategy to use.setDebug(boolean debug) Sets the debug mode of the Maven invocation.setErrorHandler(InvocationOutputHandler errorHandler) Sets the handler used to capture the error output from the Maven build.setGlobalChecksumPolicy(InvocationRequest.CheckSumPolicy globalChecksumPolicy) Sets the checksum mode of the Maven invocation.setGlobalSettingsFile(File globalSettings) Sets the path to the global settings for the Maven invocation.setGlobalToolchainsFile(File toolchains) Sets the alternate path for the global toolchains file Equivalent of-gtor--global-toolchainsSets the goals for the Maven invocation.setInputStream(InputStream inputStream) Sets the input stream used to provide input for the invoked Maven build.setJavaHome(File javaHome) Sets the path to the base directory of the Java installation used to run Maven.setLocalRepositoryDirectory(File localRepository) Sets the path to the base directory of the local repository to use for the Maven invocation.setMavenExecutable(File mavenExecutable) mavenExecutablecan either be a file relative to ${maven.home}/bin/ or an absolute file.setMavenHome(File mavenHome) Sets the path to the base directory of the Maven installation used to invoke Maven.setMavenOpts(String mavenOpts) Sets the value of theMAVEN_OPTSenvironment variable.setNonPluginUpdates(boolean nonPluginUpdates) Specifies whether Maven should check for plugin updates.setNoTransferProgress(boolean noTransferProgress) Enable no transfer progress mode.setOffline(boolean offline) Sets the network mode of the Maven invocation.setOutputHandler(InvocationOutputHandler outputHandler) Sets the handler used to capture the standard output from the Maven build.setPomFile(File pomFile) Sets the path to the POM for the Maven invocation.setPomFileName(String pomFilename) Sets the (unqualified) filename of the POM for the Maven invocation.setProfiles(List<String> profiles) Sets the profiles for the Maven invocation.setProjects(List<String> projects) Sets the reactor project list.setProperties(Properties properties) Sets the system properties for the Maven invocation.setQuiet(boolean quiet) Sets the quiet mode of the Maven invocation.setReactorFailureBehavior(InvocationRequest.ReactorFailureBehavior failureBehavior) setReactorFailureBehavior.setRecursive(boolean recursive) Sets the recursion behavior of a reactor invocation.setResumeFrom(String resumeFrom) Resume reactor from specified project.setShellEnvironmentInherited(boolean shellEnvironmentInherited) Specifies whether the environment variables of the current process should be propagated to the Maven invocation.setShowErrors(boolean showErrors) Sets the exception output mode of the Maven invocation.setShowVersion(boolean showVersion) enable displaying version without stopping the build Equivalent of-Vor--show-versionsetThreads(String threads) Thread count, for instance 2.0C where C is core multiplied Equivalent of-Tor--threadsvoidsetTimeoutInSeconds(int timeoutInSeconds) setTimeoutInSeconds.setToolchainsFile(File toolchains) Sets the alternate path for the user toolchains file Equivalent of-tor--toolchainssetUpdateSnapshots(boolean updateSnapshots) Specifies whether Maven should enforce an update check for plugins and snapshots.Specify the Maven update snapshots policysetUserSettingsFile(File userSettings) Sets the path to the user settings for the Maven invocation.
-
Constructor Details
-
DefaultInvocationRequest
public DefaultInvocationRequest()
-
-
Method Details
-
getBaseDirectory
getBaseDirectory.
- Specified by:
getBaseDirectoryin interfaceInvocationRequest- Returns:
- a
Fileobject.
-
getBaseDirectory
Gets the path to the base directory of the POM for the Maven invocation. IfInvocationRequest.getPomFile()does not returnnull, this setting only affects the working directory for the Maven invocation.- Specified by:
getBaseDirectoryin interfaceInvocationRequest- Parameters:
defaultDirectory- The default base directory to use if none is configured for this request, may benull.- Returns:
- The path to the base directory of the POM or
nullif not set.
-
getReactorFailureBehavior
getReactorFailureBehavior.
- Specified by:
getReactorFailureBehaviorin interfaceInvocationRequest- Returns:
- a ReactorFailureBehavior object.
-
getGoals
Getter for the field
goals.- Specified by:
getGoalsin interfaceInvocationRequest- Returns:
- a
Listobject.
-
getInputStream
Gets the input stream used to provide input for the invoked Maven build. This is in particular useful when invoking Maven in interactive mode.- Specified by:
getInputStreamin interfaceInvocationRequest- Parameters:
defaultStream- the defaultInputStreamto use- Returns:
- The input stream used to provide input for the invoked Maven build or
nullif not set.
-
getLocalRepositoryDirectory
Gets the path to the base directory of the local repository to use for the Maven invocation.- Specified by:
getLocalRepositoryDirectoryin interfaceInvocationRequest- Parameters:
defaultDirectory- The default location to use if no location is configured for this request, may benull.- Returns:
- The path to the base directory of the local repository or
nullto use the location from thesettings.xml.
-
getPomFile
Getter for the field
pomFile.- Specified by:
getPomFilein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
getProperties
Getter for the field
properties.- Specified by:
getPropertiesin interfaceInvocationRequest- Returns:
- a
Propertiesobject.
-
isDebug
public boolean isDebug()isDebug.
- Specified by:
isDebugin interfaceInvocationRequest- Returns:
- a boolean.
-
isBatchMode
public boolean isBatchMode()isBatchMode.
- Specified by:
isBatchModein interfaceInvocationRequest- Returns:
- a boolean.
-
isOffline
public boolean isOffline()isOffline.
- Specified by:
isOfflinein interfaceInvocationRequest- Returns:
- a boolean.
-
isShowErrors
public boolean isShowErrors()isShowErrors.
- Specified by:
isShowErrorsin interfaceInvocationRequest- Returns:
- a boolean.
-
isUpdateSnapshots
public boolean isUpdateSnapshots()isUpdateSnapshots.
- Specified by:
isUpdateSnapshotsin interfaceInvocationRequest- Returns:
- a boolean.
- See Also:
-
getUpdateSnapshotsPolicy
Description copied from interface:InvocationRequestIndicates the update snapshots policy.- Specified by:
getUpdateSnapshotsPolicyin interfaceInvocationRequest- Returns:
- the update snapshots policy.
- See Also:
-
isRecursive
public boolean isRecursive()isRecursive.
- Specified by:
isRecursivein interfaceInvocationRequest- Returns:
- a boolean.
-
setRecursive
Sets the recursion behavior of a reactor invocation. Inverse equivalent of-Nand--non-recursive- Specified by:
setRecursivein interfaceInvocationRequest- Parameters:
recursive-trueif sub modules should be build,falseotherwise.- Returns:
- This invocation request.
-
setBaseDirectory
Sets the path to the base directory of the POM for the Maven invocation. IfInvocationRequest.getPomFile()does not returnnull, this setting only affects the working directory for the Maven invocation.- Specified by:
setBaseDirectoryin interfaceInvocationRequest- Parameters:
basedir- The path to the base directory of the POM, may benullif not used.- Returns:
- This invocation request.
-
setDebug
Sets the debug mode of the Maven invocation. Equivalent of-Xand--debug- Specified by:
setDebugin interfaceInvocationRequest- Parameters:
debug-trueif Maven should be executed in debug mode,falseif the normal mode should be used.- Returns:
- This invocation request.
-
setGoals
Sets the goals for the Maven invocation.- Specified by:
setGoalsin interfaceInvocationRequest- Parameters:
goals- The goals for the Maven invocation, may benullto execute the POMs default goal.- Returns:
- This invocation request.
-
setInputStream
Sets the input stream used to provide input for the invoked Maven build. This is in particular useful when invoking Maven in interactive mode.- Specified by:
setInputStreamin interfaceInvocationRequest- Parameters:
inputStream- The input stream used to provide input for the invoked Maven build, may benullif not required.- Returns:
- This invocation request.
-
setBatchMode
Sets the interaction mode of the Maven invocation. Equivalent of-Band--batch-mode- Specified by:
setBatchModein interfaceInvocationRequest- Parameters:
interactive-trueif Maven should be executed in non-interactive mode,falseif the interactive modes is used.- Returns:
- This invocation request.
-
setLocalRepositoryDirectory
Sets the path to the base directory of the local repository to use for the Maven invocation.- Specified by:
setLocalRepositoryDirectoryin interfaceInvocationRequest- Parameters:
localRepository- The path to the base directory of the local repository, may benull.- Returns:
- This invocation request.
-
setOffline
Sets the network mode of the Maven invocation. Equivalent of-oand--offline- Specified by:
setOfflinein interfaceInvocationRequest- Parameters:
offline-trueif Maven should be executed in offline mode,falseif the online mode is used.- Returns:
- This invocation request.
-
setPomFile
Sets the path to the POM for the Maven invocation. If no base directory is set, the parent directory of this POM will be used as the working directory for the Maven invocation.- Specified by:
setPomFilein interfaceInvocationRequest- Parameters:
pomFile- The path to the POM for the Maven invocation, may benullif not used.- Returns:
- This invocation request.
-
setProperties
Sets the system properties for the Maven invocation.- Specified by:
setPropertiesin interfaceInvocationRequest- Parameters:
properties- The system properties for the Maven invocation, may benullif not set.- Returns:
- This invocation request.
-
setShowErrors
Sets the exception output mode of the Maven invocation. Equivalent of-eand--errors- Specified by:
setShowErrorsin interfaceInvocationRequest- Parameters:
showErrors-trueif Maven should print stack traces,falseotherwise.- Returns:
- This invocation request.
-
setUpdateSnapshots
Specifies whether Maven should enforce an update check for plugins and snapshots. Equivalent of-Uand--update-snapshots- Specified by:
setUpdateSnapshotsin interfaceInvocationRequest- Parameters:
updateSnapshots-trueif plugins and snapshots must be updated,falseotherwise.- Returns:
- This invocation request.
- See Also:
-
isShellEnvironmentInherited
public boolean isShellEnvironmentInherited()isShellEnvironmentInherited.
- Specified by:
isShellEnvironmentInheritedin interfaceInvocationRequest- Returns:
- a boolean.
- See Also:
-
setShellEnvironmentInherited
Specifies whether the environment variables of the current process should be propagated to the Maven invocation.- Specified by:
setShellEnvironmentInheritedin interfaceInvocationRequest- Parameters:
shellEnvironmentInherited-trueif the environment variables should be propagated,falseotherwise.- Returns:
- This invocation request.
-
getJavaHome
Getter for the field
javaHome.- Specified by:
getJavaHomein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
setJavaHome
Sets the path to the base directory of the Java installation used to run Maven.- Specified by:
setJavaHomein interfaceInvocationRequest- Parameters:
javaHome- The path to the base directory of the Java installation used to run Maven, may benullto use the default Java home.- Returns:
- This invocation request.
-
getUserSettingsFile
Gets the path to the user settings for the Maven invocation.- Specified by:
getUserSettingsFilein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
setUserSettingsFile
Sets the path to the user settings for the Maven invocation. Equivalent of-sand--settings- Specified by:
setUserSettingsFilein interfaceInvocationRequest- Parameters:
userSettings- The path to the user settings for the Maven invocation, may benullto load the user settings from the default location.- Returns:
- This invocation request.
-
getGlobalSettingsFile
Gets the path to the global settings for the Maven invocation.- Specified by:
getGlobalSettingsFilein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
setGlobalSettingsFile
Sets the path to the global settings for the Maven invocation. Equivalent of-gsand--global-settings- Specified by:
setGlobalSettingsFilein interfaceInvocationRequest- Parameters:
globalSettings- The path to the global settings for the Maven invocation, may benullto load the global settings from the default location.- Returns:
- This invocation request.
-
getToolchainsFile
Gets the path to the custom toolchains file- Specified by:
getToolchainsFilein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
setToolchainsFile
Sets the alternate path for the user toolchains file Equivalent of-tor--toolchains- Specified by:
setToolchainsFilein interfaceInvocationRequest- Parameters:
toolchains- the alternate path for the user toolchains file- Returns:
- This invocation request
-
getGlobalToolchainsFile
Alternate path for the global toolchains file Note. This is available since Maven 3.3.1- Specified by:
getGlobalToolchainsFilein interfaceInvocationRequest- Returns:
- a
Fileobject.
-
setGlobalToolchainsFile
Sets the alternate path for the global toolchains file Equivalent of-gtor--global-toolchains- Specified by:
setGlobalToolchainsFilein interfaceInvocationRequest- Parameters:
toolchains- the alternate path for the global toolchains file- Returns:
- This invocation request
-
getGlobalChecksumPolicy
Gets the checksum mode of the Maven invocation.- Specified by:
getGlobalChecksumPolicyin interfaceInvocationRequest- Returns:
- a CheckSumPolicy object.
-
getPomFileName
Gets the (unqualified) filename of the POM for the Maven invocation. This setting is ignored ifInvocationRequest.getPomFile()does not returnnull. Otherwise, the base directory is assumed to contain a POM with this name. By default, a file namedpom.xmlis used.- Specified by:
getPomFileNamein interfaceInvocationRequest- Returns:
- a
Stringobject.
-
addArg
Description copied from interface:InvocationRequestAdd a raw argument to Maven cli command at the end of other arguments. Can be called multiple time in order to add many arguments.- Specified by:
addArgin interfaceInvocationRequest- Parameters:
arg- a raw Maven arg line- Returns:
- This invocation request.
-
addArgs
Description copied from interface:InvocationRequestAdd a raw arguments list to Maven cli command at the end of other arguments. Can be called multiple time in order to add many arguments.- Specified by:
addArgsin interfaceInvocationRequest- Parameters:
args- a raw Maven args line- Returns:
- This invocation request.
-
getArgs
Description copied from interface:InvocationRequestList of raw line arguments which will be passed to cli.- Specified by:
getArgsin interfaceInvocationRequest- Returns:
- a list of cli arguments
-
setPomFileName
Sets the (unqualified) filename of the POM for the Maven invocation. This setting is ignored ifInvocationRequest.getPomFile()does not returnnull. Otherwise, the base directory is assumed to contain a POM with this name.- Specified by:
setPomFileNamein interfaceInvocationRequest- Parameters:
pomFilename- The (unqualified) filename of the POM for the Maven invocation, may benullif not used.- Returns:
- This invocation request.
-
getProfiles
Gets the profiles for the Maven invocation.- Specified by:
getProfilesin interfaceInvocationRequest- Returns:
- a
Listobject.
-
setProfiles
Sets the profiles for the Maven invocation. Equivalent of-Pand--active-profiles- Specified by:
setProfilesin interfaceInvocationRequest- Parameters:
profiles- The profiles for the Maven invocation, may benullto use the default profiles.- Returns:
- This invocation request.
-
isNonPluginUpdates
public boolean isNonPluginUpdates()Indicates whether Maven should check for plugin updates. By default, plugin updates are not suppressed.- Specified by:
isNonPluginUpdatesin interfaceInvocationRequest- Returns:
- a boolean.
-
setNonPluginUpdates
Specifies whether Maven should check for plugin updates.Equivalent of
-npuor--no-plugin-updatesnote: Ineffective with Maven3, only kept for backward compatibility
- Specified by:
setNonPluginUpdatesin interfaceInvocationRequest- Parameters:
nonPluginUpdates-trueif plugin updates should be suppressed,falseotherwise.- Returns:
- This invocation request.
-
addShellEnvironment
Adds the specified environment variable to the Maven invocation.- Specified by:
addShellEnvironmentin interfaceInvocationRequest- Parameters:
name- The name of the environment variable, must not benull.value- The value of the environment variable, must not benull.- Returns:
- This invocation request.
-
getShellEnvironments
Getter for the field
shellEnvironments.- Specified by:
getShellEnvironmentsin interfaceInvocationRequest- Returns:
- a
Mapobject.
-
getMavenOpts
Getter for the field
mavenOpts.- Specified by:
getMavenOptsin interfaceInvocationRequest- Returns:
- a
Stringobject.
-
setMavenOpts
Sets the value of theMAVEN_OPTSenvironment variable.- Specified by:
setMavenOptsin interfaceInvocationRequest- Parameters:
mavenOpts- The value of theMAVEN_OPTSenvironment variable, may benullto use the default options.- Returns:
- This invocation request.
-
isShowVersion
public boolean isShowVersion()isShowVersion.
- Specified by:
isShowVersionin interfaceInvocationRequest- Returns:
- a boolean.
- See Also:
-
setShowVersion
enable displaying version without stopping the build Equivalent of-Vor--show-version- Specified by:
setShowVersionin interfaceInvocationRequest- Parameters:
showVersion- enable displaying version- Returns:
- This invocation request.
-
getThreads
Get the value of thethreadsargument.- Specified by:
getThreadsin interfaceInvocationRequest- Returns:
- a
Stringobject.
-
setThreads
Thread count, for instance 2.0C where C is core multiplied Equivalent of-Tor--threadsnote: available since Maven3
- Specified by:
setThreadsin interfaceInvocationRequest- Parameters:
threads- the threadcount- Returns:
- This invocation request.
-
getProjects
A list of specified reactor projects to build instead of all projects. A project can be specified by [groupId]:artifactId or by its relative path.- Specified by:
getProjectsin interfaceInvocationRequest- Returns:
- a
Listobject.
-
setProjects
Sets the reactor project list. Equivalent of-plor--projects- Specified by:
setProjectsin interfaceInvocationRequest- Parameters:
projects- the reactor project list- Returns:
- This invocation request.
-
isAlsoMake
public boolean isAlsoMake()Get the value of thealso-makeargument.- Specified by:
isAlsoMakein interfaceInvocationRequest- Returns:
- a boolean.
-
setAlsoMake
Enable the 'also make' mode. Equivalent of-amor--also-make- Specified by:
setAlsoMakein interfaceInvocationRequest- Parameters:
alsoMake- enable 'also make' mode- Returns:
- This invocation request.
-
isAlsoMakeDependents
public boolean isAlsoMakeDependents()Get the value of thealso-make-dependents- Specified by:
isAlsoMakeDependentsin interfaceInvocationRequest- Returns:
- a boolean.
-
setAlsoMakeDependents
Enable the 'also make dependents' mode. Equivalent of-amdor--also-make-dependents- Specified by:
setAlsoMakeDependentsin interfaceInvocationRequest- Parameters:
alsoMakeDependents- enable 'also make' mode- Returns:
- This invocation request.
-
getResumeFrom
Get the value ofresume-from- Specified by:
getResumeFromin interfaceInvocationRequest- Returns:
- a
Stringobject.
-
setResumeFrom
Resume reactor from specified project. Equivalent of-rfor--resume-from- Specified by:
setResumeFromin interfaceInvocationRequest- Parameters:
resumeFrom- set the project to resume from- Returns:
- This invocation request
-
setBuilder
The id of the build strategy to use. equivalent of-b idor--builder id. Note. This is available since Maven 3.2.1- Specified by:
setBuilderin interfaceInvocationRequest- Parameters:
id- The builder id.- Returns:
InvocationRequest
-
getBuilder
Get the current set builder strategy id equivalent of--builder id. Note. This is available since Maven 3.2.1- Specified by:
getBuilderin interfaceInvocationRequest- Returns:
- a
Stringobject.
-
getTimeoutInSeconds
public int getTimeoutInSeconds()getTimeoutInSeconds.
- Specified by:
getTimeoutInSecondsin interfaceInvocationRequest- Returns:
- the timeout in seconds to execute the project
-
setTimeoutInSeconds
public void setTimeoutInSeconds(int timeoutInSeconds) setTimeoutInSeconds.
- Specified by:
setTimeoutInSecondsin interfaceInvocationRequest- Parameters:
timeoutInSeconds- the timeout in seconds to execute the project
-
isQuiet
public boolean isQuiet()Gets the quiet mode of the Maven invocation. By default, Maven is executed in normal mode.- Specified by:
isQuietin interfaceInvocationRequest- Returns:
- a boolean.
- Since:
- 3.1.0
-
setQuiet
Sets the quiet mode of the Maven invocation. Equivalent of-qand--quiet- Specified by:
setQuietin interfaceInvocationRequest- Parameters:
quiet-trueif Maven should be executed in quiet mode,falseif the normal mode should be used.- Returns:
- This invocation request.
-
isNoTransferProgress
public boolean isNoTransferProgress()Description copied from interface:InvocationRequestGet the value of theno-transfer-progressargument.- Specified by:
isNoTransferProgressin interfaceInvocationRequest- Returns:
trueif the argumentno-transfer-progresswas specified, otherwisefalse
-
setNoTransferProgress
Description copied from interface:InvocationRequestEnable no transfer progress mode. Equivalent of-ntpor--no-transfer-progress- Specified by:
setNoTransferProgressin interfaceInvocationRequest- Parameters:
noTransferProgress- enable no transfer progress mode- Returns:
- This invocation request.
-
getMavenHome
Gets the path to the base directory of the Maven installation used to invoke Maven.- Specified by:
getMavenHomein interfaceInvocationRequest- Returns:
- The path to the base directory of the Maven installation or
nullif using the default Maven installation.
-
setMavenHome
Sets the path to the base directory of the Maven installation used to invoke Maven. This parameter may be left unspecified to use the default Maven installation which will be discovered by evaluating the system propertymaven.home.- Specified by:
setMavenHomein interfaceInvocationRequest- Parameters:
mavenHome- The path to the base directory of the Maven installation, may benullto use the default Maven installation.- Returns:
- This invocation request
-
getMavenExecutable
Get the customized File of the Maven executable.- Specified by:
getMavenExecutablein interfaceInvocationRequest- Returns:
- the custom Maven executable, otherwise
null
-
setMavenExecutable
mavenExecutablecan either be a file relative to ${maven.home}/bin/ or an absolute file.- Specified by:
setMavenExecutablein interfaceInvocationRequest- Parameters:
mavenExecutable- the executable- Returns:
- This invocation request
-