Skip to content

Commit

Permalink
release 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KengoTODA committed Oct 10, 2018
1 parent 41bb79f commit 90b5272
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

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

## Unreleased
## 1.4.2 - 2018-10-10
### Fixed

- False negative around logging method with `Marker` instances ([#105](https://github.com/KengoTODA/findbugs-slf4j/pull/105))
Expand Down
21 changes: 10 additions & 11 deletions README.md
@@ -1,8 +1,8 @@
# FindBugs bug pattern for SLF4J

This product helps you to verify usage of SLF4J 1.6 and 1.7. Both of Java7 and Java8 are supported.
This product helps you to verify usage of SLF4J 1.6, 1.7 and 1.8. Works with Java8 and later.

To use this plugin with Sonar, see [here](sonar-plugin/README.md).
To use this plugin with SonarQube, see [here](sonar-plugin/README.md).

[![Build Status](https://secure.travis-ci.org/KengoTODA/findbugs-slf4j.png)](http://travis-ci.org/KengoTODA/findbugs-slf4j)
[![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)
Expand Down Expand Up @@ -200,13 +200,13 @@ To use this product, please configure your spotbugs-maven-plugin like below.
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
       <version>3.1.0-RC8</version>
       <version>3.1.6</version>
<configuration>
<plugins>
<plugin>
<groupId>jp.skypencil.findbugs.slf4j</groupId>
<artifactId>bug-pattern</artifactId>
             <version>1.4.0</version>
             <version>1.4.2</version>
</plugin>
</plugins>
</configuration>
Expand All @@ -219,18 +219,17 @@ To use these detectors from a Gradle build, please follow the example below:

```gradle
plugins {
id "findbugs"
id "java"
id "java"
id "com.github.spotbugs" version "1.6.4"
}
repositories {
jcenter()
jcenter()
}
dependencies {
compile "org.slf4j:slf4j-api:1.7.12"
findbugsPlugins "jp.skypencil.findbugs.slf4j:bug-pattern:1.2.4@jar"
compile "org.slf4j:slf4j-api:1.7.25"
spotbugsPlugins "jp.skypencil.findbugs.slf4j:bug-pattern:1.4.2@jar"
}
```

Expand All @@ -240,7 +239,7 @@ See [CHANGELOG.md](CHANGELOG.md) for detail.

# Copyright and license

Copyright 2012-2017 Kengo TODA
Copyright 2012-2018 Kengo TODA

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion bug-pattern/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>jp.skypencil.findbugs.slf4j</groupId>
<artifactId>findbugs-slf4j</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
</parent>
<artifactId>bug-pattern</artifactId>
<name>findbugs-slf4j bug pattern</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>jp.skypencil.findbugs.slf4j</groupId>
<artifactId>findbugs-slf4j</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
<url>https://github.com/KengoTODA/findbugs-slf4j</url>
<description>FindBugs plugin for SLF4J</description>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion sonar-plugin/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>jp.skypencil.findbugs.slf4j</groupId>
<artifactId>findbugs-slf4j</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
</parent>
<artifactId>sonar-findbugs-slf4j-plugin</artifactId>
<name>findbugs-slf4j sonar plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion test-case/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>jp.skypencil.findbugs.slf4j</groupId>
<artifactId>findbugs-slf4j</artifactId>
<version>1.4.2-SNAPSHOT</version>
<version>1.4.2</version>
</parent>
<artifactId>test-case</artifactId>
<name>findbugs-slf4j test case</name>
Expand Down

0 comments on commit 90b5272

Please sign in to comment.