mirror of
https://github.com/apache/maven-mvnd.git
synced 2025-09-28 00:22:03 +00:00
Fix SERIAL command line option
The boolean type cause the following argument to be swallowed
This commit is contained in:
@@ -51,7 +51,7 @@ public enum Environment {
|
|||||||
/** Stop all daemon instances registered in the registry specified by <code>mvnd.registry</code> */
|
/** Stop all daemon instances registered in the registry specified by <code>mvnd.registry</code> */
|
||||||
STOP(null, null, null, OptionType.VOID, Flags.OPTIONAL, "--stop"),
|
STOP(null, null, null, OptionType.VOID, Flags.OPTIONAL, "--stop"),
|
||||||
/** Use one thread, no log buffering and the default project builder to behave like a standard maven */
|
/** Use one thread, no log buffering and the default project builder to behave like a standard maven */
|
||||||
SERIAL("mvnd.serial", null, Boolean.FALSE, OptionType.BOOLEAN, Flags.OPTIONAL, "--serial"),
|
SERIAL("mvnd.serial", null, Boolean.FALSE, OptionType.VOID, Flags.OPTIONAL, "--serial"),
|
||||||
|
|
||||||
//
|
//
|
||||||
// Log properties
|
// Log properties
|
||||||
|
Reference in New Issue
Block a user