-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue-70_getStackTrace
- Loading branch information
Showing
7 changed files
with
75 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<modelVersion>4.0.0</modelVersion> | ||
<groupId>jp.skypencil.findbugs.slf4j</groupId> | ||
<artifactId>findbugs-slf4j</artifactId> | ||
<version>1.4.3-SNAPSHOT</version> | ||
<version>1.5.0-SNAPSHOT</version> | ||
<url>https://github.com/KengoTODA/findbugs-slf4j</url> | ||
<description>FindBugs plugin for SLF4J</description> | ||
<packaging>pom</packaging> | ||
|
@@ -16,9 +16,10 @@ | |
<maven.compiler.target>1.8</maven.compiler.target> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<spotbugs.version>3.1.7</spotbugs.version> | ||
<spotless.version>1.15.0</spotless.version> | ||
<spotbugs.version>3.1.11</spotbugs.version> | ||
<spotless.version>1.17.0</spotless.version> | ||
<version.slf4j>1.7.25</version.slf4j> | ||
<junit.version>5.3.2</junit.version> | ||
</properties> | ||
<scm> | ||
<connection>scm:git:[email protected]:KengoTODA/findbugs-slf4j.git</connection> | ||
|
@@ -73,7 +74,7 @@ | |
<dependency> | ||
<groupId>com.google.errorprone</groupId> | ||
<artifactId>error_prone_core</artifactId> | ||
<version>2.3.1</version> | ||
<version>2.3.2</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
|
@@ -84,19 +85,12 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.22.0</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.junit.platform</groupId> | ||
<artifactId>junit-platform-surefire-provider</artifactId> | ||
<version>1.3.1</version> | ||
</dependency> | ||
</dependencies> | ||
<version>2.22.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-maven-plugin</artifactId> | ||
<version>3.1.6</version> | ||
<version>3.1.10</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.github.spotbugs</groupId> | ||
|
@@ -108,7 +102,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>3.2.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
|
@@ -237,24 +231,36 @@ | |
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>26.0-jre</version> | ||
<version>27.0.1-jre</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-api</artifactId> | ||
<version>5.3.1</version> | ||
<version>${junit.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.3.1</version> | ||
<version>${junit.version}</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.vintage</groupId> | ||
<artifactId>junit-vintage-engine</artifactId> | ||
<version>${junit.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>2.23.0</version> | ||
<version>2.24.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -290,7 +296,7 @@ | |
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>1.18.2</version> | ||
<version>1.18.4</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# After `mvn clean package` in the project root dir, run following command to build: | ||
# docker image build . -t findbugs-slf4j | ||
# | ||
# Then you can run SonarQube instance with findbugs-slf4j: | ||
# docker container run -it -P findbugs-slf4j | ||
|
||
FROM sonarqube:6.7.5 | ||
|
||
ENV SONAR_JAVA_VERSION=5.1.0.13090 \ | ||
SONAR_FINDBUGS_VERSION=3.8.0 \ | ||
FINDBUGS_SLF4J_VERSION=1.5.0-SNAPSHOT | ||
|
||
RUN wget -P $SONARQUBE_HOME/extensions/plugins/ --no-verbose https://github.com/spotbugs/sonar-findbugs/releases/download/$SONAR_FINDBUGS_VERSION/sonar-findbugs-plugin-$SONAR_FINDBUGS_VERSION.jar | ||
RUN wget -P $SONARQUBE_HOME/extensions/plugins/ --no-verbose http://central.maven.org/maven2/org/sonarsource/java/sonar-java-plugin/$SONAR_JAVA_VERSION/sonar-java-plugin-$SONAR_JAVA_VERSION.jar | ||
COPY target/sonar-findbugs-slf4j-plugin-$FINDBUGS_SLF4J_VERSION.jar $SONARQUBE_HOME/extensions/plugins/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters