我想在循环中多次执行任务。 例如。
task firsttask{
println"this is first task"
def parsedfile = (new XmlParser()).parse("d:/myfile.xml")
parsedfile.list.each{
list->
println"execute second task multiple times"
tasks.secondtask.execute()
}
}
task secondtask<<{
println"this is from second task"
}
//这是多次打印“多次执行第二个任务”行,但任务只执行一次。请帮忙