Skip to content

Commit 90b5272

Browse files
committed
release 1.4.2
1 parent 41bb79f commit 90b5272

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This changelog follows [Keep a Changelog v1.0.0](https://keepachangelog.com/en/1.0.0/).
44

5-
## Unreleased
5+
## 1.4.2 - 2018-10-10
66
### Fixed
77

88
- False negative around logging method with `Marker` instances ([#105](https://github.com/KengoTODA/findbugs-slf4j/pull/105))

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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
221221
plugins {
222-
id "findbugs"
223-
id "java"
222+
id "java"
223+
id "com.github.spotbugs" version "1.6.4"
224224
}
225225
226226
repositories {
227-
jcenter()
227+
jcenter()
228228
}
229229
230230
dependencies {
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

245244
Licensed under the Apache License, Version 2.0 (the "License");
246245
you may not use this file except in compliance with the License.

bug-pattern/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>jp.skypencil.findbugs.slf4j</groupId>
55
<artifactId>findbugs-slf4j</artifactId>
6-
<version>1.4.2-SNAPSHOT</version>
6+
<version>1.4.2</version>
77
</parent>
88
<artifactId>bug-pattern</artifactId>
99
<name>findbugs-slf4j bug pattern</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>jp.skypencil.findbugs.slf4j</groupId>
44
<artifactId>findbugs-slf4j</artifactId>
5-
<version>1.4.2-SNAPSHOT</version>
5+
<version>1.4.2</version>
66
<url>https://github.com/KengoTODA/findbugs-slf4j</url>
77
<description>FindBugs plugin for SLF4J</description>
88
<packaging>pom</packaging>

sonar-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>jp.skypencil.findbugs.slf4j</groupId>
55
<artifactId>findbugs-slf4j</artifactId>
6-
<version>1.4.2-SNAPSHOT</version>
6+
<version>1.4.2</version>
77
</parent>
88
<artifactId>sonar-findbugs-slf4j-plugin</artifactId>
99
<name>findbugs-slf4j sonar plugin</name>

test-case/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>jp.skypencil.findbugs.slf4j</groupId>
55
<artifactId>findbugs-slf4j</artifactId>
6-
<version>1.4.2-SNAPSHOT</version>
6+
<version>1.4.2</version>
77
</parent>
88
<artifactId>test-case</artifactId>
99
<name>findbugs-slf4j test case</name>

0 commit comments

Comments
 (0)