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 2022/05/15 23:16:24 UTC

[commons-text] branch master updated: Reuse parent POM property names for Spotbugs.

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 373e50e8 Reuse parent POM property names for Spotbugs.
373e50e8 is described below

commit 373e50e8ed65baa7cea2efa5ac5d124593838a79
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun May 15 19:16:20 2022 -0400

    Reuse parent POM property names for Spotbugs.
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 10211ef0..24a06cef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -50,8 +50,8 @@
     <checkstyle.plugin.version>3.1.2</checkstyle.plugin.version>
     <checkstyle.version>9.3</checkstyle.version>
 
-    <spotbugs.plugin.version>4.6.0.0</spotbugs.plugin.version>
-    <spotbugs.impl.version>4.7.0</spotbugs.impl.version>
+    <commons.spotbugs.plugin.version>4.6.0.0</commons.spotbugs.plugin.version>
+    <commons.spotbugs.impl.version>4.7.0</commons.spotbugs.impl.version>
     <commons.pmd.version>3.16.0</commons.pmd.version>
     <commons.pmd-impl.version>6.45.0</commons.pmd-impl.version>
 
@@ -228,12 +228,12 @@
       <plugin>
         <groupId>com.github.spotbugs</groupId>
         <artifactId>spotbugs-maven-plugin</artifactId>
-        <version>${spotbugs.plugin.version}</version>
+        <version>${commons.spotbugs.plugin.version}</version>
         <dependencies>
           <dependency>
             <groupId>com.github.spotbugs</groupId>
             <artifactId>spotbugs</artifactId>
-            <version>${spotbugs.impl.version}</version>
+            <version>${commons.spotbugs.impl.version}</version>
          </dependency>
         </dependencies>
         <configuration>
@@ -313,7 +313,7 @@
       <plugin>
         <groupId>com.github.spotbugs</groupId>
         <artifactId>spotbugs-maven-plugin</artifactId>
-        <version>${spotbugs.plugin.version}</version>
+        <version>${commons.spotbugs.plugin.version}</version>
         <configuration>
           <excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>