7

我正在从命令行运行 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>
4

2 回答 2

4

解决方法是,您可以gradle --version在运行命令之前先运行。

例子:

gradle --version # the welcome message will appear here
gradle -q mycommand # there should be no welcome message anymore

编辑:gradle github问题的解决方法:https ://github.com/gradle/gradle/issues/5213#issuecomment-391976595

于 2018-05-23T08:56:47.403 回答
1

这可以在文件中配置gradle.properties

systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false
于 2021-12-14T16:15:38.947 回答