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-jxpath.git
commit e28d8459db629c4ecaaac87f2d44261b47ef5dcd Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Apr 12 09:04:27 2025 -0400 Move Checkstyle configuration file to /src/conf/ --- pom.xml | 4 ++-- checkstyle.xml => src/conf/checkstyle.xml | 0 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 98dcca3..b5ac8c7 100644 --- a/pom.xml +++ b/pom.xml @@ -121,7 +121,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> - <configLocation>${basedir}/checkstyle.xml</configLocation> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> <excludes>org/apache/commons/jxpath/ri/parser/*</excludes> </configuration> </plugin> @@ -246,7 +246,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> - <configLocation>${basedir}/checkstyle.xml</configLocation> + <configLocation>${basedir}/src/conf/checkstyle.xml</configLocation> <excludes>org/apache/commons/jxpath/ri/parser/*</excludes> </configuration> </plugin> diff --git a/checkstyle.xml b/src/conf/checkstyle.xml similarity index 100% rename from checkstyle.xml rename to src/conf/checkstyle.xml