Kengo's blog

Technical articles about original projects, JVM, Static Analysis and TypeScript.

findbugs-slf4j:0.1 released

Today I released finsbugs-slf4j and deployed it to Maven central.

This project is a FinfBugs plugin to support SLF4J user. You can use it from your Maven project like below.

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>findbugs-maven-plugin</artifactId>
        <version>2.5.2</version>
        <configuration>
          <plugins>
            <plugin>
              <groupId>jp.skypencil.findbugs.slf4j</groupId>
              <artifactId>bug-pattern</artifactId>
              <version>0.1</version>
            </plugin>
          </plugins>
        </configuration>
      </plugin>

I think SLF4J is the most famous logging facade library, so this plugin would become good help for Java community including Enterprise Java user. I hope that you like this plugin. Thank you!