Skip to content

Commit

Permalink
Bump spotbugs to 4.8.6
Browse files Browse the repository at this point in the history
- Bump the spotbugs dependency from 4.2.0 to the latest version 4.8.6.
- This is needed for Java 21 support, see spotbugs releasenotes:
  https://github.com/spotbugs/spotbugs/releases/tag/4.8.0
- Need to exclude logback from spotbugs since it's a newer version
  compiled with class version 55 (we are still on class version 52 with
  JDK 1.8).
  • Loading branch information
Jim Verheijde committed Dec 30, 2024
1 parent 26ca686 commit 3c251fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,9 @@ dependencies {
}

// SpotBugs dependencies
implementation('com.github.spotbugs:spotbugs:4.2.0') {
implementation('com.github.spotbugs:spotbugs:4.8.6') {
exclude group: 'org.slf4j'
exclude group: 'ch.qos.logback'
}

// Scalastyle http://www.scalastyle.org/
Expand Down

0 comments on commit 3c251fc

Please sign in to comment.