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-dbutils.git
The following commit(s) were added to refs/heads/master by this push:
new af85677 Set a baseline for JaCoCo checks
af85677 is described below
commit af856774a24287ac8bba32b5f79b5eb1e824e81f
Author: Gary Gregory <[email protected]>
AuthorDate: Wed May 8 13:27:12 2024 -0400
Set a baseline for JaCoCo checks
---
pom.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index a5fb2b9..4d45856 100644
--- a/pom.xml
+++ b/pom.xml
@@ -265,8 +265,15 @@
<commons.jira.pid>12310470</commons.jira.pid>
<commons.release.isDistModule>true</commons.release.isDistModule>
<project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
+ <!-- JaCoCo: Don't make code coverage worse than: -->
+ <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
+ <commons.jacoco.classRatio>0.93</commons.jacoco.classRatio>
+ <commons.jacoco.instructionRatio>0.67</commons.jacoco.instructionRatio>
+ <commons.jacoco.methodRatio>0.58</commons.jacoco.methodRatio>
+ <commons.jacoco.branchRatio>0.81</commons.jacoco.branchRatio>
+ <commons.jacoco.lineRatio>0.66</commons.jacoco.lineRatio>
+ <commons.jacoco.complexityRatio>0.61</commons.jacoco.complexityRatio>
</properties>
-
<build>
<!-- clean before javadoc:javadoc somehow help javadoc not blow up. -->
<defaultGoal>clean verify apache-rat:check japicmp:cmp checkstyle:check
spotbugs:check pmd:check pmd:cpd-check clean javadoc:javadoc</defaultGoal>