This is an automated email from the ASF dual-hosted git repository.

pottlinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git


The following commit(s) were added to refs/heads/master by this push:
     new 76badb1  Introduce >JDK8 profile to fix GHA build errors
76badb1 is described below

commit 76badb19d15dc75f0578be6e1522afb08a147584
Author: P. Ottlinger <pottlin...@apache.org>
AuthorDate: Sun Jul 21 21:58:54 2024 +0200

    Introduce >JDK8 profile to fix GHA build errors
---
 pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/pom.xml b/pom.xml
index ec77e88..479265d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -379,4 +379,20 @@
     <name>Apache Software Foundation</name>
     <url>http://www.apache.org</url>
   </organization>
+  <profiles>
+    <profile>
+      <id>maven.compiler.release</id>
+      <activation>
+        <jdk>[9,)</jdk>
+      </activation>
+      <properties>
+        <!--
+          Note that this cannot use our ${javaVersion} property, so it must
+          be changed manually when we decide to move to a higher version of
+          Java
+        -->
+        <maven.compiler.release>8</maven.compiler.release>
+      </properties>
+    </profile>
+  </profiles>
 </project>

Reply via email to