This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a commit to branch maven-compiler-plugin-3.x
in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
The following commit(s) were added to refs/heads/maven-compiler-plugin-3.x by
this push:
new 385e3f2 Fix Java 25 compatibility during integration tests (#1020)
385e3f2 is described below
commit 385e3f2809802c6908a36e8c17ef35ed7c869168
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Mon Jan 26 16:19:58 2026 +0100
Fix Java 25 compatibility during integration tests (#1020)
---
src/it/MCOMPILER-540/pom.xml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/src/it/MCOMPILER-540/pom.xml b/src/it/MCOMPILER-540/pom.xml
index 3f3e577..6ed2625 100644
--- a/src/it/MCOMPILER-540/pom.xml
+++ b/src/it/MCOMPILER-540/pom.xml
@@ -67,4 +67,23 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>java9</id>
+ <activation>
+ <jdk>[9,)</jdk>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <proc>full</proc>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>