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-jexl.git
The following commit(s) were added to refs/heads/master by this push:
new ea81a0a8 Set a baseline for JaCoCo checks
ea81a0a8 is described below
commit ea81a0a878429fdd72efb7a2167a696a6968da06
Author: Gary Gregory <[email protected]>
AuthorDate: Wed May 8 15:56:57 2024 -0400
Set a baseline for JaCoCo checks
---
pom.xml | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/pom.xml b/pom.xml
index 3fb5f948..b2247ddc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,16 +54,14 @@
<commons.jira.id>JEXL</commons.jira.id>
<commons.jira.pid>12310479</commons.jira.pid>
<japicmp.skip>false</japicmp.skip>
-
- <!-- override of Jacoco properties defined in CP52 -->
- <commons.jacoco.classRatio>0.95</commons.jacoco.classRatio>
- <commons.jacoco.instructionRatio>0.85</commons.jacoco.instructionRatio>
- <commons.jacoco.methodRatio>0.85</commons.jacoco.methodRatio>
- <commons.jacoco.branchRatio>0.75</commons.jacoco.branchRatio>
- <commons.jacoco.complexityRatio>0.70</commons.jacoco.complexityRatio>
- <commons.jacoco.lineRatio>0.85</commons.jacoco.lineRatio>
- <commons.jacoco.haltOnFailure>false</commons.jacoco.haltOnFailure>
-
+ <!-- JaCoCo: Don't make code coverage worse than: -->
+ <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
+ <commons.jacoco.classRatio>0.96</commons.jacoco.classRatio>
+ <commons.jacoco.instructionRatio>0.89</commons.jacoco.instructionRatio>
+ <commons.jacoco.methodRatio>0.90</commons.jacoco.methodRatio>
+ <commons.jacoco.branchRatio>0.80</commons.jacoco.branchRatio>
+ <commons.jacoco.lineRatio>0.89</commons.jacoco.lineRatio>
+ <commons.jacoco.complexityRatio>0.75</commons.jacoco.complexityRatio>
<!-- Cyclone -->
<commons.cyclonedx.version>2.7.5</commons.cyclonedx.version>