This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 5.2
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.2 by this push:
     new 65eeda82cd PHOENIX-7675 Update spotless plugin to also format IT 
classes (#2233)(#2234) (#2256)
65eeda82cd is described below

commit 65eeda82cd040d41d06536d4b1e7f6ea8cf19a73
Author: Nihal Jain <nihalj...@apache.org>
AuthorDate: Mon Aug 4 10:11:29 2025 +0530

    PHOENIX-7675 Update spotless plugin to also format IT classes 
(#2233)(#2234) (#2256)
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index b40a3a0259..2236f2e0c1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -722,6 +722,13 @@
               <exclude>**/generated/*</exclude>
               <exclude>**/package-info.java</exclude>
             </excludes>
+            <!-- We need to explicitly set includes as we have src/it which is 
not standard java
+            src path and spotless does not identify it otherwise -->
+            <includes>
+              <include>src/main/java/**/*.java</include>
+              <include>src/test/java/**/*.java</include>
+              <include>src/it/java/**/*.java</include>
+            </includes>
             <!--
               e.g., remove the following lines:
               "* @param paramName"
@@ -805,6 +812,7 @@
               <includes>
                 <include>src/main/java/**/*.java</include>
                 <include>src/test/java/**/*.java</include>
+                <include>src/it/java/**/*.java</include>
               </includes>
               <excludes>
                 <exclude>**/generated/*</exclude>

Reply via email to