我想在我的android项目中使用Spotbugs,但是它失败并出现异常。
运行任务:gradle-> module-> other-> spotbugs

我有这个异常(exception):

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")
    }
}

最佳答案

需要添加spotbugsClasspath = buildscript.configurations.classpath

09-25 15:32