我在Maven插件的帮助下创建了一个Java应用程序,用于使用以下maven目标:
mvn archetype:generate -DgroupId=net.javabeat
-DartifactId=SampleJavaProject
-DarchetypeArtifactId=maven-archetype-quick-start
-DinteractiveMode=false
当-DinteractiveMode=false
时,项目以批处理模式创建,而当-DinteractiveMode=true
时,则以交互模式创建项目。
我对交互模式和批处理模式感到困惑。那是什么?
答案 0 :(得分:44)
批处理模式将自动使用默认值,而不是通过提示输入这些值。批处理模式也可以通过命令行上的--batch-mode
或-B
激活。
答案 1 :(得分:31)
批处理模式导致Maven无法显示"进度:125 / 150kB"运行时的样式线。如果您在某个服务器上运行Maven,然后再检查日志,这些进度行占用了日志的90%,并且基本上无法找到重要的内容。设置批处理模式会阻止此操除此之外,我还不知道批处理模式的任何其他用途。正如其他人所说,无论是否设置了交互模式或批处理模式,我都没有在构建过程中看到Maven提示任何内容。
答案 2 :(得分:3)
--batch-mode
的一个常见用例是在持续集成服务器上使用Maven时,如本文档中所述:Running Maven in Batch Mode。
因此它将例如禁止上传消息,以避免污染控制台日志。
例如,当您通过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
是默认启用的。