gpt4 book ai didi

gradle - 停止显示输出中的欢迎使用 Gradle 消息

转载 作者:行者123 更新时间:2023-12-02 09:25:20 25 4
gpt4 key购买 nike

我正在从命令行运行 gradle 命令,并且我只想显示输出。有一个选项 -q, -quiet 表示它只会记录错误。运行命令后,我也得到了这个垃圾输出。我怎样才能阻止这个?

Welcome to Gradle 2.11.

To run a build, run gradle <task> ...

To see a list of available tasks, run gradle tasks

To see a list of command-line options, run gradle --help

To see more detail about a task, run gradle help --task <task>

最佳答案

在 Gradle 7.5 中,可以在 gradle.properties 中设置一个新标志

org.gradle.welcome=(never,once)

Controls whether Gradle should print a welcome message. If set to never then the welcome message will be suppressed. If set to once then the message is printed once for each new version of Gradle. Default is once.

https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties

您可以通过多种方式设置此属性。第一个找到的获胜。

  • 命令行,使用 -P/--project-prop 环境选项设置。

  • GRADLE_USER_HOME 目录中的gradle.properties

  • 项目根目录中的gradle.properties

  • gradle.properties 在 Gradle 安装目录中。

因此,要在 CI/CD 中抑制此行为,请添加

org.gradle.welcome=never

$projectDir/gradle.properties

关于gradle - 停止显示输出中的欢迎使用 Gradle 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37143740/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com