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-validator.git
commit 0ad2ffc1c1d0aef8b2828c386e581189de81234c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 4 08:57:29 2023 -0500 Declutter the root folder --- pom.xml | 8 ++++---- .../conf/checkstyle-suppressions.xml | 0 checkstyle.xml => src/conf/checkstyle.xml | 0 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 50b7b4b9..604c76c3 100644 --- a/pom.xml +++ b/pom.xml @@ -118,9 +118,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> - <configLocation>${basedir}/checkstyle.xml</configLocation> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> <!-- Needed to define config_loc --> - <propertyExpansion>config_loc=${basedir}</propertyExpansion> + <propertyExpansion>config_loc=${basedir}/src/conf</propertyExpansion> <enableRulesSummary>false</enableRulesSummary> </configuration> </plugin> @@ -198,9 +198,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> - <configLocation>${basedir}/checkstyle.xml</configLocation> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> <!-- Needed to define config_loc --> - <propertyExpansion>config_loc=${basedir}</propertyExpansion> + <propertyExpansion>config_loc=${basedir}/src/conf</propertyExpansion> <enableRulesSummary>false</enableRulesSummary> </configuration> <reportSets> diff --git a/checkstyle-suppressions.xml b/src/conf/checkstyle-suppressions.xml similarity index 100% rename from checkstyle-suppressions.xml rename to src/conf/checkstyle-suppressions.xml diff --git a/checkstyle.xml b/src/conf/checkstyle.xml similarity index 100% rename from checkstyle.xml rename to src/conf/checkstyle.xml