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 389f26ac Move Checkstyle configuration out of the root folder
389f26ac is described below

commit 389f26ac19da13a4454f116d826dbd33b4ffa106
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue May 31 09:12:20 2022 -0400

    Move Checkstyle configuration out of the root folder
---
 pom.xml                                                           | 8 ++++----
 checkstyle-header.txt => src/conf/checkstyle-header.txt           | 0
 .../conf/checkstyle-suppressions.xml                              | 0
 checkstyle.xml => src/conf/checkstyle.xml                         | 0
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index f4c4a561..91cc1be4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -210,10 +210,10 @@
         <version>${checkstyle.plugin.version}</version>
         <configuration>
           <enableRulesSummary>false</enableRulesSummary>
-          <configLocation>checkstyle.xml</configLocation>
-          <headerLocation>checkstyle-header.txt</headerLocation>
-          
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
-          
<suppressionsFileExpression>checkstyle-suppressions.xml</suppressionsFileExpression>
+          <configLocation>src/conf/checkstyle.xml</configLocation>
+          <headerLocation>src/conf/checkstyle-header.txt</headerLocation>
+          
<suppressionsLocation>src/conf/checkstyle-suppressions.xml</suppressionsLocation>
+          
<suppressionsFileExpression>src/conf/checkstyle-suppressions.xml</suppressionsFileExpression>
           <includeTestSourceDirectory>true</includeTestSourceDirectory>
           <excludes>**/generated/**.java,**/jmh_generated/**.java</excludes>
         </configuration>
diff --git a/checkstyle-header.txt b/src/conf/checkstyle-header.txt
similarity index 100%
rename from checkstyle-header.txt
rename to src/conf/checkstyle-header.txt
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

Reply via email to