Skip to content

Commit

Permalink
update spotbugs plugin to 4.7.9 (maven group changed)
Browse files Browse the repository at this point in the history
  • Loading branch information
xvik committed Nov 7, 2021
1 parent ac86851 commit a591fbd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit a591fbd

Please sign in to comment.