From 0a5ac85312f94d85ae2b9752f9e10c53ca8cd150 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 9 Dec 2021 08:57:26 -0500 Subject: [PATCH] Move Spotbugs plugin config files into a conf folder, decluttering the root folder. --- pom.xml | 4 ++-- .../conf/spotbugs-exclude-filter.xml | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename spotbugs-exclude-filter.xml => src/conf/spotbugs-exclude-filter.xml (100%) diff --git a/pom.xml b/pom.xml index 406844655..5a5d23a5b 100644 --- a/pom.xml +++ b/pom.xml @@ -831,7 +831,7 @@ - ${basedir}/spotbugs-exclude-filter.xml + ${basedir}/src/conf/spotbugs-exclude-filter.xml @@ -881,7 +881,7 @@ spotbugs-maven-plugin ${spotbugs.plugin.version} - ${basedir}/spotbugs-exclude-filter.xml + ${basedir}/src/conf/spotbugs-exclude-filter.xml 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