11# FindBugs bug pattern for SLF4J
22
3- This product helps you to verify usage of SLF4J 1.6 and 1.7. Both of Java7 and Java8 are supported .
3+ This product helps you to verify usage of SLF4J 1.6, 1.7 and 1.8. Works with Java8 and later .
44
5- To use this plugin with Sonar , see [ here] ( sonar-plugin/README.md ) .
5+ To use this plugin with SonarQube , see [ here] ( sonar-plugin/README.md ) .
66
77[ ![ Build Status] ( https://secure.travis-ci.org/KengoTODA/findbugs-slf4j.png )] ( http://travis-ci.org/KengoTODA/findbugs-slf4j )
88[ ![ Quality Gate] ( https://sonarcloud.io/api/project_badges/measure?project=jp.skypencil.findbugs.slf4j%3Afindbugs-slf4j&metric=alert_status )] ( https://sonarcloud.io/dashboard?id=jp.skypencil.findbugs.slf4j%3Afindbugs-slf4j )
@@ -200,13 +200,13 @@ To use this product, please configure your spotbugs-maven-plugin like below.
200200 <plugin >
201201 <groupId >com.github.spotbugs</groupId >
202202 <artifactId >spotbugs-maven-plugin</artifactId >
203- <version >3.1.0-RC8 </version >
203+ <version >3.1.6 </version >
204204 <configuration >
205205 <plugins >
206206 <plugin >
207207 <groupId >jp.skypencil.findbugs.slf4j</groupId >
208208 <artifactId >bug-pattern</artifactId >
209- <version >1.4.0 </version >
209+ <version >1.4.2 </version >
210210 </plugin >
211211 </plugins >
212212 </configuration >
@@ -219,18 +219,17 @@ To use these detectors from a Gradle build, please follow the example below:
219219
220220``` gradle
221221plugins {
222- id "findbugs "
223- id "java "
222+ id "java "
223+ id "com.github.spotbugs" version "1.6.4 "
224224}
225225
226226repositories {
227- jcenter()
227+ jcenter()
228228}
229229
230230dependencies {
231- compile "org.slf4j:slf4j-api:1.7.12"
232-
233- findbugsPlugins "jp.skypencil.findbugs.slf4j:bug-pattern:1.2.4@jar"
231+ compile "org.slf4j:slf4j-api:1.7.25"
232+ spotbugsPlugins "jp.skypencil.findbugs.slf4j:bug-pattern:1.4.2@jar"
234233}
235234```
236235
@@ -240,7 +239,7 @@ See [CHANGELOG.md](CHANGELOG.md) for detail.
240239
241240# Copyright and license
242241
243- Copyright 2012-2017 Kengo TODA
242+ Copyright 2012-2018 Kengo TODA
244243
245244Licensed under the Apache License, Version 2.0 (the "License");
246245you may not use this file except in compliance with the License.
0 commit comments