我第一次为Gradle项目配置SpotBugs plugin。
buildscript {
repositories {
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'gradle.plugin.com.github.spotbugs:spotbugs-gradle-plugin:1.6.6'
}
}
apply plugin: 'com.github.spotbugs'
运行gradle check
时出现错误Plugin with id 'com.github.spotbugs' not found.
,我在做什么错了?
版本5.0。