This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-parent.git
The following commit(s) were added to refs/heads/master by this push:
new 8455ffe SLING-13240 Move spotless execution to phase "verify" (#70)
8455ffe is described below
commit 8455ffe757f0dcd7be3e562c6fdfe910d64a14e0
Author: Konrad Windszus <[email protected]>
AuthorDate: Fri Jun 19 11:22:54 2026 +0200
SLING-13240 Move spotless execution to phase "verify" (#70)
---
sling-parent/pom.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sling-parent/pom.xml b/sling-parent/pom.xml
index e12a979..74202ba 100644
--- a/sling-parent/pom.xml
+++ b/sling-parent/pom.xml
@@ -549,10 +549,13 @@
</dependencies>
<executions>
<execution>
+ <!-- explicit ignore necessary for m2e due to
https://github.com/eclipse-m2e/m2e-core/issues/2193,
+ syntax described in
https://eclipse.dev/m2e/documentation/release-notes-17.html#new-syntax-for-specifying-lifecycle-mapping-metadata-->
+ <?m2e ignore?>
<goals>
<goal>${spotless.action}</goal>
</goals>
- <phase>process-sources</phase>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>