Gradle:war任务覆盖子项目中的测试任务

时间:2016-09-13 15:31:17

标签: testing gradle war multi-project

我有"测试"子项目中的任务:

apply plugin: 'java'

test {
  description = 'Runs tests that are marked as @FastTest.'

  useJUnit {  includeCategories 'category.FastTest'  }
}

如果我添加" war"任务到根项目:

apply plugin: 'war'

,它会覆盖子项目中的测试任务,例如:它忽略了我的测试"任务属性。 我如何压制" war"任务覆盖"测试"任务?

0 个答案:

没有答案