#58 - Added CommandLine.Argument.debug() to run Maven in debug mode.

This commit is contained in:
Oliver Gierke
2017-07-25 18:25:52 +02:00
parent f01a5e538a
commit 2ecdfd9cbc

View File

@@ -176,6 +176,10 @@ class CommandLine {
return Argument.of("-D".concat(name));
}
public static Argument debug() {
return Argument.of("-X");
}
public Argument withValue(Object value) {
return new Argument(name, ArgumentValue.of(value));
}