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


The following commit(s) were added to refs/heads/master by this push:
     new b36116c  Move Checkstyle configuration under 'src/conf'
b36116c is described below

commit b36116c38c3282694ad38ee0f2f3495be9d54066
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Oct 9 10:14:23 2023 -0400

    Move Checkstyle configuration under 'src/conf'
---
 pom.xml                                        | 6 +++---
 {conf => src/conf}/HEADER.txt                  | 0
 {conf => src/conf}/checkstyle.xml              | 0
 {conf => src/conf}/findbugs-exclude-filter.xml | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 15dbf18..41c70b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -205,9 +205,9 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <configuration>
-                    
<configLocation>${basedir}/conf/checkstyle.xml</configLocation>
+                    
<configLocation>${basedir}/src/conf/checkstyle.xml</configLocation>
                     <enableRulesSummary>false</enableRulesSummary>
-                    <headerFile>${basedir}/conf/HEADER.txt</headerFile>
+                    <headerFile>${basedir}/src/conf/HEADER.txt</headerFile>
                 </configuration>
             </plugin>
             <plugin>
@@ -224,7 +224,7 @@
                 <configuration>
                     <threshold>Normal</threshold>
                     <effort>Default</effort>
-                    
<excludeFilterFile>${basedir}/conf/findbugs-exclude-filter.xml</excludeFilterFile>
+                    
<excludeFilterFile>${basedir}/src/conf/findbugs-exclude-filter.xml</excludeFilterFile>
                 </configuration>
             </plugin>
             <plugin>
diff --git a/conf/HEADER.txt b/src/conf/HEADER.txt
similarity index 100%
rename from conf/HEADER.txt
rename to src/conf/HEADER.txt
diff --git a/conf/checkstyle.xml b/src/conf/checkstyle.xml
similarity index 100%
rename from conf/checkstyle.xml
rename to src/conf/checkstyle.xml
diff --git a/conf/findbugs-exclude-filter.xml 
b/src/conf/findbugs-exclude-filter.xml
similarity index 100%
rename from conf/findbugs-exclude-filter.xml
rename to src/conf/findbugs-exclude-filter.xml

Reply via email to