我添加到build.gradle的gradle任务未列出。
这就是我的build.gradle看起来的样子
task helloWorld {
doLast {
println 'Hello world from gradle.'
}
}
但是,当我运行gradle tasks
时,未列出任务helloWorld
。请帮忙。
gradle版本如下。
$ gradle -v
------------------------------------------------------------
Gradle 3.4.1
------------------------------------------------------------
Build time: 2017-03-03 19:45:41 UTC
Revision: 9eb76efdd3d034dc506c719dac2955efb5ff9a93
Groovy: 2.4.7
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_31 (Oracle Corporation 25.31-b07)
OS: Mac OS X 10.11.6 x86_64
答案 0 :(得分:0)
看起来我们需要使用--all switch。以下作品。
$ gradle tasks --all