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

commit 009bdb6921cf88e12beef56977adad75be58900e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Oct 9 09:02:12 2023 -0400

    Move Checkstyle configuration under 'src/conf'
---
 pom.xml                                                           | 8 ++++----
 src/{site/resources => conf}/checkstyle/checkstyle-header.txt     | 0
 .../resources => conf}/checkstyle/checkstyle-suppressions.xml     | 0
 src/{site/resources => conf}/checkstyle/checkstyle.xml            | 0
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index a316f82..59f870b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -256,8 +256,8 @@
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>
 
-    
<checkstyle.header.file>${basedir}/src/site/resources/checkstyle/checkstyle-header.txt</checkstyle.header.file>
-    
<checkstyle.config.file>${basedir}/src/site/resources/checkstyle/checkstyle.xml</checkstyle.config.file>
+    
<checkstyle.header.file>${basedir}/src/conf/checkstyle/checkstyle-header.txt</checkstyle.header.file>
+    
<checkstyle.config.file>${basedir}/src/conf/checkstyle/checkstyle.xml</checkstyle.config.file>
 
     <commons.componentid>dbutils</commons.componentid>
     <commons.module.name>org.apache.commons.dbutils</commons.module.name>
@@ -281,8 +281,8 @@
             <configLocation>${checkstyle.config.file}</configLocation>
             <enableRulesSummary>false</enableRulesSummary>
             <headerLocation>${checkstyle.header.file}</headerLocation>
-            
<suppressionsLocation>${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
-            
<suppressionsFileExpression>${basedir}/src/site/resources/checkstyle/checkstyle-suppressions.xml</suppressionsFileExpression>
+            
<suppressionsLocation>${basedir}/src/conf/checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
+            
<suppressionsFileExpression>${basedir}/src/conf/checkstyle/checkstyle-suppressions.xml</suppressionsFileExpression>
             <failOnViolation>false</failOnViolation>
           </configuration>
         </plugin>
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

Reply via email to