You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/11/04 14:22:42 UTC

[commons-daemon] branch master updated: Add spotbugs-maven-plugin.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
     new 4999982  Add spotbugs-maven-plugin.
4999982 is described below

commit 49999825de9618e769bd61a875db8e7c9c5fa93e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Nov 4 10:22:40 2021 -0400

    Add spotbugs-maven-plugin.
---
 pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pom.xml b/pom.xml
index 8043f43..386e7e4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,6 +122,7 @@
     <commons.jira.pid>12310468</commons.jira.pid>
     <commons.jacoco.version>0.8.7</commons.jacoco.version>
     <commons.japicmp.version>0.15.4</commons.japicmp.version>
+    <commons.spotbugs.version>4.4.2.2</commons.spotbugs.version>
   </properties>
 
   <build>
@@ -146,6 +147,11 @@
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>com.github.spotbugs</groupId>
+          <artifactId>spotbugs-maven-plugin</artifactId>
+          <version>${commons.spotbugs.version}</version>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>