FindBugs版本:3.0.1
在使用gradle 2.14.1到3.6时,以下脚本可能会很好地排除文件(Kotlin):
tasks.withType(FindBugs) {
exclude '**/com/xxx/*'
classes = classes.filter {
!it.path.contains(new File("com/xxx").path)
}
reports {
xml.enabled = false
html.enabled = true
}
}
但是当更改为使用gradle 4.6时,以上脚本无法排除文件。
为什么以及如何解决?感谢您的帮助。