搜索Gradle插件

com.github.spotbugs.temporary

使用SpotBugs在您的项目的Java源文件上执行质量检查,并从这些检查中生成报告。这是为了支持Gradle 4.10的修复而发布的一个临时版本。

https://spotbugs.github.io/

源: https://github.com/spotbugs/spotbugs-gradle-plugin

版本 1.6.4 (最新)

1.6.4

创建于 2018年9月7日。

使用SpotBugs在您的项目的Java源文件上执行质量检查,并从这些检查中生成报告。这是为了支持Gradle 4.10的修复而发布的一个临时版本。

使用插件的DSL

plugins {
  id("com.github.spotbugs.temporary") version "1.6.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.spotbugs.temporary:spotbugs-gradle-plugin:1.6.4")
  }
}

apply(plugin = "com.github.spotbugs.temporary")

使用插件的DSL

plugins {
  id "com.github.spotbugs.temporary" version "1.6.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.spotbugs.temporary:spotbugs-gradle-plugin:1.6.4"
  }
}

apply plugin: "com.github.spotbugs.temporary"

了解如何将插件应用于子项目