什么只运行“gradle”执行?

问题描述 投票:-1回答:1

如果我们只在终端执行“gradle”命令,结果如下。

$ gradle

> Task :help

Welcome to Gradle 4.10.

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>

For troubleshooting, visit https://help.gradle.org

BUILD SUCCESSFUL in 0s
1 actionable task: 1 executed

它是什么?我想知道采取了什么行动

gradle
1个回答
0
投票

Task :help是你的线索。它默认运行help任务。要更改它,请参阅Gradle文档中的Default Tasks,以获得有关如何更改Gradle项目的默认任务的一些见解。

© www.soinside.com 2019 - 2024. All rights reserved.