我有"测试"子项目中的任务:
apply plugin: 'java'
test {
description = 'Runs tests that are marked as @FastTest.'
useJUnit { includeCategories 'category.FastTest' }
}
如果我添加" war"任务到根项目:
apply plugin: 'war'
,它会覆盖子项目中的测试任务,例如:它忽略了我的测试"任务属性。 我如何压制" war"任务覆盖"测试"任务?