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 7b00ce63 JaCoCo: Java 11 limits show up differently on Java 11 vs. > 11. 7b00ce63 is described below commit 7b00ce63bf90bd2617ccd295e24af0c5da71dc66 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Thu Apr 24 16:58:45 2025 -0400 JaCoCo: Java 11 limits show up differently on Java 11 vs. > 11. --- commons-rdf-simple/pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/commons-rdf-simple/pom.xml b/commons-rdf-simple/pom.xml index ab5ebef4..e43f328b 100644 --- a/commons-rdf-simple/pom.xml +++ b/commons-rdf-simple/pom.xml @@ -78,4 +78,23 @@ </plugin> </plugins> </build> + <profiles> + <profile> + <!-- Java 11 --> + <id>java-11</id> + <activation> + <jdk>11</jdk> + </activation> + <properties> + <!-- JaCoCo: Java 11 limits show up differently on Java 11 vs. > 11. --> + <!-- JaCoCo: Don't make code coverage worse than: --> + <commons.jacoco.classRatio>0.84</commons.jacoco.classRatio> + <commons.jacoco.instructionRatio>0.65</commons.jacoco.instructionRatio> + <commons.jacoco.methodRatio>0.70</commons.jacoco.methodRatio> + <commons.jacoco.branchRatio>0.72</commons.jacoco.branchRatio> + <commons.jacoco.lineRatio>0.68</commons.jacoco.lineRatio> + <commons.jacoco.complexityRatio>0.72</commons.jacoco.complexityRatio> + </properties> + </profile> + </profiles> </project> \ No newline at end of file