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 2020/06/28 19:49:42 UTC

[commons-text] branch master updated: Refactor SpotBugs implementation version into spotbugs.impl.version. Add test dep on Commons IO for convenience.

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-text.git


The following commit(s) were added to refs/heads/master by this push:
     new 71796f3  Refactor SpotBugs implementation version into spotbugs.impl.version. Add test dep on Commons IO for convenience.
71796f3 is described below

commit 71796f333129085d24acad2185b14f30378ff1c8
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jun 28 15:49:35 2020 -0400

    Refactor SpotBugs implementation version into spotbugs.impl.version. Add
    test dep on Commons IO for convenience.
---
 pom.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9dadac0..b9981a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -51,6 +51,7 @@
     <checkstyle.version>8.33</checkstyle.version>
 
     <spotbugs.plugin.version>4.0.0</spotbugs.plugin.version>
+    <spotbugs.impl.version>4.0.6</spotbugs.impl.version>
     
     <commons.jacoco.version>0.8.5</commons.jacoco.version>
 
@@ -90,14 +91,12 @@
       <version>3.16.1</version>
       <scope>test</scope>
     </dependency>
-    <!--
     <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
       <version>2.7</version>
       <scope>test</scope>
     </dependency>
-    -->
   </dependencies>
 
   <build>
@@ -150,6 +149,13 @@
         <groupId>com.github.spotbugs</groupId>
         <artifactId>spotbugs-maven-plugin</artifactId>
         <version>${spotbugs.plugin.version}</version>
+        <dependencies>
+          <dependency>
+            <groupId>com.github.spotbugs</groupId>
+            <artifactId>spotbugs</artifactId>
+            <version>${spotbugs.impl.version}</version>
+         </dependency>
+        </dependencies>
         <configuration>
           <excludeFilterFile>${basedir}/sb-excludes.xml</excludeFilterFile>
         </configuration>