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

henrib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git


The following commit(s) were added to refs/heads/master by this push:
     new d0a99192 JEXL : skip jacoco on Java28+
d0a99192 is described below

commit d0a99192247249cb49e7b2c66597ea6884f82ec5
Author: Henrib <[email protected]>
AuthorDate: Wed Aug 12 15:49:19 2026 +0200

    JEXL : skip jacoco on Java28+
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index 73b702c5..3059a7af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -307,6 +307,18 @@
             </plugin>
         </plugins>
     </build>
+    <profiles>
+        <profile>
+            <!-- Skip coverage instrumentation on early-access builds -->
+            <id>java28plus</id>
+            <activation>
+                <jdk>[28,)</jdk>
+            </activation>
+            <properties>
+                <jacoco.skip>true</jacoco.skip>
+            </properties>
+        </profile>
+    </profiles>
     <reporting>
         <plugins>
             <plugin>

Reply via email to