Merge pull request #1225 from apache/WW-5531-jre8-compat

WW-5531 Enforce JRE8 compatibility (when compiled on JDK9+)
This commit is contained in:
Kusal Kithul-Godage
2025-02-20 17:22:42 +11:00
committed by GitHub
+9
View File
@@ -183,6 +183,15 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>jdk9plus</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<properties>
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
<profile>
<id>jdk17</id>
<activation>