我想在我的 gradle 构建中使用 cobertura,所以我以这种方式创建了任务:
ant.typedef(resource: 'tasks.properties', classpath:configurations.cobertura.asPath)
现在我想跑步cobertura-instrument
。问题是我不知道如何运行此任务,因为ant.cobertura-instrument(...)
它不起作用。有没有其他方法可以运行它?例如像这样ant.tasks['cobertura-instrument'](...)