我们在Java中有一个多项目构建,其中8个项目中的两个是系统测试,我们不想针对系统测试代码(位于'src / main / java')运行FindBugs或Checkstyle
我在顶级build.gradle文件中启用了findbugs / checkstyle,但是想要“禁用”插件在这两个项目中运行?
答案 0 :(得分:3)
我喜欢gradle,结果很简单
//Disable findbugs and checkstyle as per legacy ant build.xml
findbugs {
sourceSets = []
}
checkstyle {
sourceSets = []
}`