You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2023/01/09 22:18:51 UTC

[logging-log4j2] branch master updated: Apply spotless automatically

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b0d21e156 Apply spotless automatically
     new 2ddc4e1676 Merge pull request #1196 from jvz/master
4b0d21e156 is described below

commit 4b0d21e156acf50dae959296495b12d12e7e7c8c
Author: Matt Sicker <ms...@apple.com>
AuthorDate: Mon Jan 9 12:06:58 2023 -0600

    Apply spotless automatically
    
    This adds executions during process-sources and process-test-sources to ensure that modified files are formatted properly.
---
 pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/pom.xml b/pom.xml
index 9510be00de..2b8cd3e4da 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1655,6 +1655,19 @@
               <goal>check</goal>
             </goals>
           </execution>
+          <execution>
+            <id>apply-spotless</id>
+            <goals>
+              <goal>apply</goal>
+            </goals>
+            <phase>process-sources</phase>
+          </execution><execution>
+          <id>apply-spotless-test</id>
+          <goals>
+            <goal>apply</goal>
+          </goals>
+          <phase>process-test-sources</phase>
+        </execution>
         </executions>
       </plugin>
       <plugin>