搜索Gradle插件

com.github.spotbugs

所有者: Kengo TODA

使用SpotBugs对项目的Java源文件执行质量检查,并从这些检查中生成报告

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

来源: https://github.com/spotbugs/spotbugs

使用 插件DSL

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

使用 旧插件应用程序

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

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

使用 插件DSL

plugins {
  id "com.github.spotbugs" version "6.0.20"
}

使用 旧插件应用程序

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

apply plugin: "com.github.spotbugs"

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