初めて Gradle プロジェクト用にSpotBugs プラグインを構成しています。
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。