This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-12173 in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git
commit d7f0ef5a5179b5f7b9b422509dd640193a13a636 Author: Robert Munteanu <[email protected]> AuthorDate: Thu Apr 25 09:45:42 2024 +0200 SLING-12305 - Build fails on Java 21 due to invoker plug-in: Unsupported class file major version 65 Update to a more recent version of the invoker-maven-plugin, which depends on a version of Groovy with Java 21 support. --- pom.xml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 313e3f6..ae37b62 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,24 @@ <goal>verify</goal> </goals> </execution> - </executions> + </executions><!-- + <dependencies> + <dependency> + <groupId>org.apache.groovy</groupId> + <artifactId>groovy</artifactId> + <version>4.0.16</version> + </dependency> + <dependency> + <groupId>org.apache.groovy</groupId> + <artifactId>groovy-json</artifactId> + <version>4.0.16</version> + </dependency> + <dependency> + <groupId>org.apache.groovy</groupId> + <artifactId>groovy-xml</artifactId> + <version>4.0.16</version> + </dependency> + </dependencies>--> </plugin> </plugins> </build>
