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 ff81bdd4 Add a Java 25-ea profile for JaCoCo
ff81bdd4 is described below
commit ff81bdd45ce0baf69170627a385711d8fd74120f
Author: Gary D. Gregory <[email protected]>
AuthorDate: Fri May 2 08:45:54 2025 -0400
Add a Java 25-ea profile for JaCoCo
---
commons-rdf-simple/pom.xml | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/commons-rdf-simple/pom.xml b/commons-rdf-simple/pom.xml
index 5ab9b341..725725af 100644
--- a/commons-rdf-simple/pom.xml
+++ b/commons-rdf-simple/pom.xml
@@ -100,7 +100,7 @@
<!-- Java 24 and up. -->
<id>java-17-up</id>
<activation>
- <jdk>[17,)</jdk>
+ <jdk>[17,24]</jdk>
</activation>
<properties>
<!-- JaCoCo: Java 17 limits show up differently on Java >= 17. -->
@@ -113,5 +113,17 @@
<commons.jacoco.complexityRatio>0.72</commons.jacoco.complexityRatio>
</properties>
</profile>
+ <profile>
+ <!-- Java 25 -->
+ <id>java-25</id>
+ <activation>
+ <jdk>25</jdk>
+ </activation>
+ <properties>
+ <!-- JaCoCo: Don't make code coverage worse than: -->
+ <commons.jacoco.branchRatio>0.71</commons.jacoco.branchRatio>
+ <commons.jacoco.complexityRatio>0.71</commons.jacoco.complexityRatio>
+ </properties>
+ </profile>
</profiles>
</project>
\ No newline at end of file