I would just keep track of all the task names and then create the composite build task last.
def itemTasks = []
// loop over items and append task name to temTasks
tasks.create('execItems') {
dependsOn itemTasks
}
I would just keep track of all the task names and then create the composite build task last.
def itemTasks = []
// loop over items and append task name to temTasks
tasks.create('execItems') {
dependsOn itemTasks
}
Eeeeexcellent. Works like a charm. Thanks!