SpotBugs "Не указано значение для свойства 'spotbugsClasspath'"
Я хочу использовать spotbugs в моем проекте Android, но это не удалось за исключением. Выполнить задачу: gradle->module->other->spotbugs
У меня есть это исключение:
FAILURE: Build failed with an exception.
* What went wrong:
A problem was found with the configuration of task ':project:spotbugs'.
> No value has been specified for property 'spotbugsClasspath'.
spotbugs.gradle
apply plugin: 'com.github.spotbugs'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.spotbugs:spotbugs-gradle- plugin:1.6.2"
}
}
spotbugs {
toolVersion = "3.1.3"
ignoreFailures = true
effort = 'max'
reportLevel = 'high'
excludeFilter = file("$rootProject.projectDir/rules-findbugs.xml")
}
task spotbugs (type: com.github.spotbugs.SpotBugsTask) {
println 'start spotbugs task'
pluginClasspath = project.configurations.spotbugsPlugins
// spotbugsClasspath = ???
classes = fileTree("$project.buildDir/$classDir")
source = fileTree("$project.projectDir/src/main/java/com/project/")
classpath = files()
reports {
xml.enabled = false
html.enabled = true
html.destination = file("$project.buildDir/outputs/findbugs/findbugs.html")
}
}
1 ответ
Решение
Нужно добавить spotbugsClasspath = buildscript.configurations.classpath