gnodet commented on code in PR #869:
URL: https://github.com/apache/maven/pull/869#discussion_r1214326567
##########
maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java:
##########
@@ -173,7 +177,17 @@ public CLIManager() {
.build());
options.addOption(Option.builder(Character.toString(BATCH_MODE))
.longOpt("batch-mode")
- .desc("Run in non-interactive (batch) mode (disables output
color)")
+ .desc(
+ "Run in non-interactive (batch) mode (disables output
color) - alias for --non-interactive (kept for backwards compatability)")
+ .build());
+ options.addOption(Option.builder(NON_INTERACTIVE)
+ .longOpt("non-interactive")
+ .desc("Run in non-interactive (batch) mode (disables output
color) - alias for --batch-mode")
+ .build());
+ options.addOption(Option.builder(FORCE_INTERACTIVE)
+ .longOpt("force-interactive")
+ .desc(
+ "Run in interactive mode - even when the environment
variable CI is set to true and --non-interactive or --batch-mode are set")
Review Comment:
I'm not sure the flag is relevant for jansi.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]