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/12/09 13:57:31 UTC

[commons-lang] branch master updated: Move Spotbugs plugin config files into a conf folder, decluttering the root folder.

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


The following commit(s) were added to refs/heads/master by this push:
     new 0a5ac85  Move Spotbugs plugin config files into a conf folder, decluttering the root folder.
0a5ac85 is described below

commit 0a5ac85312f94d85ae2b9752f9e10c53ca8cd150
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 9 08:57:26 2021 -0500

    Move Spotbugs plugin config files into a conf folder, decluttering the
    root folder.
---
 pom.xml                                                             | 4 ++--
 spotbugs-exclude-filter.xml => src/conf/spotbugs-exclude-filter.xml | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4068446..5a5d23a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -831,7 +831,7 @@
          </dependency>
         </dependencies>        
         <configuration>
-          <excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile>
+          <excludeFilterFile>${basedir}/src/conf/spotbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>
       </plugin>
     </plugins>
@@ -881,7 +881,7 @@
         <artifactId>spotbugs-maven-plugin</artifactId>
         <version>${spotbugs.plugin.version}</version>
         <configuration>
-          <excludeFilterFile>${basedir}/spotbugs-exclude-filter.xml</excludeFilterFile>
+          <excludeFilterFile>${basedir}/src/conf/spotbugs-exclude-filter.xml</excludeFilterFile>
         </configuration>
       </plugin>
       <plugin>
diff --git a/spotbugs-exclude-filter.xml b/src/conf/spotbugs-exclude-filter.xml
similarity index 100%
rename from spotbugs-exclude-filter.xml
rename to src/conf/spotbugs-exclude-filter.xml