我已经安装了Gradle并正在尝试教程。
我的问题是 ant.echo不打印任何东西
task helloWorld {
doLast {
println 'This is printed out'
ant.echo(message: 'This is not printed out')
}
}
gradle -v输出:
Build time: 2017-10-30 15:43:29 UTC
Revision: c684c202534c4138b51033b52d871939b8d38d72
Groovy: 2.4.12
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_131 (Oracle Corporation 25.131-b11)
OS: Windows 10 10.0 x86
我没有安装Ant,但我发现它附带了Gradle。 那我错过了什么?