From a591fbd6b342d78b54b967d647798504f183497a Mon Sep 17 00:00:00 2001 From: Vyacheslav Rusakov Date: Mon, 8 Nov 2021 05:54:25 +0700 Subject: [PATCH] update spotbugs plugin to 4.7.9 (maven group changed) --- CHANGELOG.md | 3 ++- build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e2d902..c2c53b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ * Fix gradle 7 deprecation warnings (#30) -* Update spotbugs plugin 4.7.1 -> 4.7.5 +* Update spotbugs plugin 4.7.1 -> 4.7.9 + (maven group changed: gradle.plugin.com.github.spotbugs.snom -> com.github.spotbugs.snom) * Deprecate quality.pmdIncremental property because incremental analysis is enabled by default since gradle 6.4 (property only useful for enabling it in gradle 5.6 - 6.3) diff --git a/build.gradle b/build.gradle index 36171a8..1703145 100644 --- a/build.gradle +++ b/build.gradle @@ -23,13 +23,13 @@ wrapper { ext { animalsnifferVersion = '1.5.4' cpdVersion = '3.3' - spotbugsPluginVersion = '4.7.5' + spotbugsPluginVersion = '4.7.9' docVersion = '4.6.0' } repositories { mavenLocal(); mavenCentral(); gradlePluginPortal() } dependencies { - implementation "gradle.plugin.com.github.spotbugs.snom:spotbugs-gradle-plugin:$spotbugsPluginVersion" + implementation "com.github.spotbugs.snom:spotbugs-gradle-plugin:$spotbugsPluginVersion" testImplementation('org.spockframework:spock-core:2.0-groovy-2.5') { exclude group: 'org.codehaus.groovy'