You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2017/09/01 15:15:03 UTC

aries-jax-rs-whiteboard git commit: FindBugs/SpotBugs integration with Find Security Bugs plugin

Repository: aries-jax-rs-whiteboard
Updated Branches:
  refs/heads/master 0444ef600 -> 481910e01


FindBugs/SpotBugs integration with Find Security Bugs plugin

Run with `mvn clean install spotbugs:check spotbugs:gui`


Project: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/repo
Commit: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/commit/481910e0
Tree: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/tree/481910e0
Diff: http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/diff/481910e0

Branch: refs/heads/master
Commit: 481910e01bbed78e59772e7c3bbf5d32e8d9567d
Parents: 0444ef6
Author: Tomáš Polešovský <to...@liferay.com>
Authored: Fri Sep 1 13:13:33 2017 +0200
Committer: Carlos Sierra <cs...@apache.org>
Committed: Fri Sep 1 17:14:00 2017 +0200

----------------------------------------------------------------------
 jax-rs.whiteboard/pom.xml | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aries-jax-rs-whiteboard/blob/481910e0/jax-rs.whiteboard/pom.xml
----------------------------------------------------------------------
diff --git a/jax-rs.whiteboard/pom.xml b/jax-rs.whiteboard/pom.xml
index 47b3f1f..7216e38 100644
--- a/jax-rs.whiteboard/pom.xml
+++ b/jax-rs.whiteboard/pom.xml
@@ -135,6 +135,27 @@
     </dependencies>
 
     <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>com.github.hazendaz.spotbugs</groupId>
+                    <artifactId>spotbugs-maven-plugin</artifactId>
+                    <version>3.0.6</version>
+                    <configuration>
+                        <effort>Max</effort>
+                        <threshold>Low</threshold>
+                        <failOnError>false</failOnError>
+                        <plugins>
+                            <plugin>
+                                <groupId>com.h3xstream.findsecbugs</groupId>
+                                <artifactId>findsecbugs-plugin</artifactId>
+                                <version>LATEST</version>
+                            </plugin>
+                        </plugins>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
         <plugins>
             <plugin>
                 <groupId>biz.aQute.bnd</groupId>
@@ -142,4 +163,15 @@
             </plugin>
         </plugins>
     </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>com.github.hazendaz.spotbugs</groupId>
+                <artifactId>spotbugs-maven-plugin</artifactId>
+                <version>3.0.6</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>