Class BuildJob.Result
- java.lang.Object
-
- org.apache.maven.plugins.invoker.model.BuildJob.Result
-
- Enclosing class:
- BuildJob
public static class BuildJob.Result extends java.lang.ObjectThe various results with which a build job can complete.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringERRORThe result value corresponding with an unexpected error trying to invoke Maven.static java.lang.StringFAILURE_BUILDThe result value corresponding with an invocation that failed while invoking of Maven.static java.lang.StringFAILURE_POST_HOOKThe result value corresponding with an invocation that failed after the invocation of Maven.static java.lang.StringFAILURE_PRE_HOOKThe result value corresponding with an invocation that failed before Maven was be invoked.static java.lang.StringSKIPPEDThe result value corresponding with an invocation that was skipped.static java.lang.StringSUCCESSThe result value corresponding with a successful invocation of Maven and completion of all post-hook scripts.
-
Constructor Summary
Constructors Constructor Description Result()
-
-
-
Field Detail
-
SUCCESS
public static final java.lang.String SUCCESS
The result value corresponding with a successful invocation of Maven and completion of all post-hook scripts.- See Also:
- Constant Field Values
-
FAILURE_PRE_HOOK
public static final java.lang.String FAILURE_PRE_HOOK
The result value corresponding with an invocation that failed before Maven was be invoked.- See Also:
- Constant Field Values
-
FAILURE_BUILD
public static final java.lang.String FAILURE_BUILD
The result value corresponding with an invocation that failed while invoking of Maven.- See Also:
- Constant Field Values
-
FAILURE_POST_HOOK
public static final java.lang.String FAILURE_POST_HOOK
The result value corresponding with an invocation that failed after the invocation of Maven.- See Also:
- Constant Field Values
-
SKIPPED
public static final java.lang.String SKIPPED
The result value corresponding with an invocation that was skipped.- See Also:
- Constant Field Values
-
ERROR
public static final java.lang.String ERROR
The result value corresponding with an unexpected error trying to invoke Maven.- See Also:
- Constant Field Values
-
-