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

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


The following commit(s) were added to refs/heads/master by this push:
     new a2abef30 JaCoCo: Java 24 limits show up differently on Java 24
a2abef30 is described below

commit a2abef3032e956c17d2734f04c4ec523faba9b55
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Apr 24 17:02:01 2025 -0400

    JaCoCo: Java 24 limits show up differently on Java 24
---
 commons-rdf-simple/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/commons-rdf-simple/pom.xml b/commons-rdf-simple/pom.xml
index e43f328b..c9e5267d 100644
--- a/commons-rdf-simple/pom.xml
+++ b/commons-rdf-simple/pom.xml
@@ -96,5 +96,22 @@
         <commons.jacoco.complexityRatio>0.72</commons.jacoco.complexityRatio>
       </properties>
     </profile>
+    <profile>
+      <!-- Java 11 -->
+      <id>java-24</id>
+      <activation>
+        <jdk>24</jdk>
+      </activation>
+      <properties>
+        <!-- JaCoCo: Java 24 limits show up differently on Java 24. -->
+        <!-- JaCoCo: Don't make code coverage worse than: -->
+        <commons.jacoco.classRatio>0.84</commons.jacoco.classRatio>
+        <commons.jacoco.instructionRatio>0.81</commons.jacoco.instructionRatio>
+        <commons.jacoco.methodRatio>0.83</commons.jacoco.methodRatio>
+        <commons.jacoco.branchRatio>0.72</commons.jacoco.branchRatio>
+        <commons.jacoco.lineRatio>0.81</commons.jacoco.lineRatio>    
+        <commons.jacoco.complexityRatio>0.72</commons.jacoco.complexityRatio>
+      </properties>
+    </profile>
   </profiles>
 </project>
\ No newline at end of file

Reply via email to