This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-12305 in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git
commit 1edeb0d3db78ff47e50ad7783cac8d78057e3a7b Author: Robert Munteanu <[email protected]> AuthorDate: Thu Apr 25 10:07:01 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 1172d97..313e3f6 100644 --- a/pom.xml +++ b/pom.xml @@ -149,6 +149,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> + <version>3.6.1</version> <configuration> <debug>true</debug> <projectsDirectory>src/it</projectsDirectory>
