Package org.apache.maven.api.cli
Interface InvokerRequest
- All Known Implementing Classes:
BaseInvokerRequest,EncryptInvokerRequest,MavenInvokerRequest,ShellInvokerRequest
Represents a Maven invocation request, encapsulating all necessary information
for invoking a Maven build or command. Arguments are parsed and exposed via methods.
- Since:
- 4.0.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns a list of core extensions, if configured in the .mvn/extensions.xml file.cwd()Returns the current working directory for the Maven execution.default booleanembedded()Returnstrueif this call happens in "embedded" mode.Returns the Maven installation directory.default Lookuplookup()Shorthand forLookup.default MessageBuilderFactoryShorthand forMessageBuilderFactory.options()Returns the options associated with this invocation request.The parser request this instance was created from.booleanFlag representing parser processing result: if there were some fatal errors duringParser.parseInvocation(ParserRequest)this method will returntrueand invoker should handle this request as "early failure".Returns the root directory of the Maven invocation, if found.default Optional<OutputStream>stdErr()Returns the error stream for the Maven execution, if running in embedded mode.default Optional<InputStream>stdIn()Returns the input stream for the Maven execution, if running in embedded mode.default Optional<OutputStream>stdOut()Returns the output stream for the Maven execution, if running in embedded mode.Returns a map of system properties for the Maven execution.Returns the top-level directory of the Maven invocation.Returns the user's home directory.Returns a map of user-defined properties for the Maven execution.
-
Method Details
-
parserRequest
The parser request this instance was created from. -
parsingFailed
boolean parsingFailed()Flag representing parser processing result: if there were some fatal errors duringParser.parseInvocation(ParserRequest)this method will returntrueand invoker should handle this request as "early failure". -
embedded
default boolean embedded()Returnstrueif this call happens in "embedded" mode.- See Also:
-
cwd
Returns the current working directory for the Maven execution. This is typically the directory from which Maven was invoked.- Returns:
- the current working directory path
-
installationDirectory
Returns the Maven installation directory. This is usually set by the Maven launcher script using the "maven.home" system property.- Returns:
- the Maven installation directory path
-
userHomeDirectory
Returns the user's home directory. This is typically obtained from the "user.home" system property.- Returns:
- the user's home directory path
-
messageBuilderFactory
Shorthand forMessageBuilderFactory. -
lookup
Shorthand forLookup. -
userProperties
Returns a map of user-defined properties for the Maven execution. These properties can be set using the -D command-line option.- Returns:
- an unmodifiable map of user properties
-
systemProperties
Returns a map of system properties for the Maven execution. These include both Java system properties and Maven-specific system properties.- Returns:
- an unmodifiable map of system properties
-
topDirectory
Returns the top-level directory of the Maven invocation. This is typically the directory containing the POM file being executed.- Returns:
- the top-level directory path
-
rootDirectory
Returns the root directory of the Maven invocation, if found. This is determined by the presence of a.mvndirectory or a POM with the root="true" property but is not always applicable (ie invocation from outside a checkout).- Returns:
- the root directory path, if present
-
stdIn
Returns the input stream for the Maven execution, if running in embedded mode.- Returns:
- an
Optionalcontaining the input stream, or empty if not applicable
-
stdOut
Returns the output stream for the Maven execution, if running in embedded mode.- Returns:
- an
Optionalcontaining the output stream, or empty if not applicable
-
stdErr
Returns the error stream for the Maven execution, if running in embedded mode.- Returns:
- an
Optionalcontaining the error stream, or empty if not applicable
-
coreExtensions
Returns a list of core extensions, if configured in the .mvn/extensions.xml file.- Returns:
- an
Optionalcontaining the list of core extensions, or empty if not configured
-
options
Returns the options associated with this invocation request.- Returns:
- the options object
-