Maven 中交互模式和批处理模式的区别是什么?

我在 Maven 插件的帮助下创建了一个 Java 应用程序,它的目标如下:

mvn archetype:generate -DgroupId=net.javabeat
-DartifactId=SampleJavaProject
-DarchetypeArtifactId=maven-archetype-quick-start
-DinteractiveMode=false

-DinteractiveMode=false时,则以批处理模式创建项目; 当 -DinteractiveMode=true时,则以交互模式创建项目。
我对交互模式和批处理模式感到困惑。这些是什么?

58971 次浏览

批处理模式将自动使用默认值,而不是通过提示询问这些值。批处理模式也可以通过命令行上的 --batch-mode-B激活。

批处理模式导致 Maven 在运行时不显示“ Progress: 125/150kB”样式行。如果您在某个服务器上运行 Maven,然后检查日志,那么这些进度线占据了日志的90% ,基本上不可能找到重要的内容。设置批处理模式可以防止这种情况。除此之外,我不知道批处理模式还有什么其他用途。正如其他人所说,我从未见过 Maven 在构建期间提示任何内容,无论是交互模式还是批处理模式是否设置。

--batch-mode的一个常见用例是在持续集成服务器上使用 Maven,如本文档所述: 以批处理模式运行 Maven

因此,例如,它将禁止上载消息以避免污染控制台日志。

例如,当您通过 Maven 的模板 .gitlab-ci.yml在 GitLab 上创建一个新文件时,变量中将包含以下内容:

variables:
# This will suppress any download for dependencies and plugins or upload messages which would clutter the console log.
# `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work.
MAVEN_OPTS: "-Dhttps.protocols=TLSv1.2 -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN -Dorg.slf4j.simpleLogger.showDateTime=true -Djava.awt.headless=true"
# As of Maven 3.3.0 instead of this you may define these options in `.mvn/maven.config` so the same config is used
# when running from the command line.
# `installAtEnd` and `deployAtEnd` are only effective with recent version of the corresponding plugins.
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version -DinstallAtEnd=true -DdeployAtEnd=true"

您可以看到默认情况下启用了 --batch-mode