在此处提供的代码:Gant 文件中,有以下代码:
target(dist: 'Create release artefacts') {
depends(test)
depends(jar)
}
target(run: 'Run the distributed jar') {
depends(dist)
Ant.java(jar: distributedJarPath, fork: 'true')
}
target(hello: 'Hello World') {
println("Hello World")
}
setDefaultTarget(dist)
我对它如何编写感兴趣,并且不会收到关于缺失属性setDefaultTarget(dist)
的异常。dist
这个片段是否在某个对象的上下文中评估,并且目标创建实例变量?