From fb43784f1dfbd5fcffdd6017987454bbe1afb6cf Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Mon, 9 Oct 2023 08:56:34 -0400 Subject: [PATCH] Move Checkstyle configuration under 'src/conf' --- pom.xml | 6 +++--- .../resources => conf}/checkstyle/checkstyle-header.txt | 0 .../checkstyle/checkstyle-suppressions.xml | 0 src/{site/resources => conf}/checkstyle/checkstyle.xml | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{site/resources => conf}/checkstyle/checkstyle-header.txt (100%) rename src/{site/resources => conf}/checkstyle/checkstyle-suppressions.xml (100%) rename src/{site/resources => conf}/checkstyle/checkstyle.xml (100%) diff --git a/pom.xml b/pom.xml index 3b9411c8..550eb9c2 100644 --- a/pom.xml +++ b/pom.xml @@ -167,9 +167,9 @@ UTF-8 UTF-8 - ${basedir}/src/site/resources/checkstyle/checkstyle-header.txt - ${basedir}/src/site/resources/checkstyle/checkstyle.xml - ${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml + ${basedir}/src/conf/checkstyle/checkstyle-header.txt + ${basedir}/src/conf/checkstyle/checkstyle.xml + ${basedir}/src/conf/checkstyle/checkstyle-suppressions.xml LICENSE.txt, NOTICE.txt, **/maven-archiver/pom.properties false diff --git a/src/site/resources/checkstyle/checkstyle-header.txt b/src/conf/checkstyle/checkstyle-header.txt similarity index 100% rename from src/site/resources/checkstyle/checkstyle-header.txt rename to src/conf/checkstyle/checkstyle-header.txt diff --git a/src/site/resources/checkstyle/checkstyle-suppressions.xml b/src/conf/checkstyle/checkstyle-suppressions.xml similarity index 100% rename from src/site/resources/checkstyle/checkstyle-suppressions.xml rename to src/conf/checkstyle/checkstyle-suppressions.xml diff --git a/src/site/resources/checkstyle/checkstyle.xml b/src/conf/checkstyle/checkstyle.xml similarity index 100% rename from src/site/resources/checkstyle/checkstyle.xml rename to src/conf/checkstyle/checkstyle.xml