This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/commons-xml.git
commit ba293aeb5d80479d48db58648295ef35f05368c5 Author: Gary Gregory <[email protected]> AuthorDate: Sun Aug 30 12:27:19 2026 -0400 Set a floor for test coverage. --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index ba8511d..84d50f0 100644 --- a/pom.xml +++ b/pom.xml @@ -74,6 +74,14 @@ limitations under the License. <commons.xerces.version>2.12.2</commons.xerces.version> <!-- Test-only: computes each secure class' shade closure, mirroring maven-shade minimizeJar, for ShadingFootprintTest. --> <commons.jdependency.version>2.16</commons.jdependency.version> + <!-- jacoco-maven-plugin: Should only get better --> + <commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure> + <commons.jacoco.classRatio>0.97</commons.jacoco.classRatio> + <commons.jacoco.instructionRatio>0.97</commons.jacoco.instructionRatio> + <commons.jacoco.methodRatio>0.99</commons.jacoco.methodRatio> + <commons.jacoco.branchRatio>0.91</commons.jacoco.branchRatio> + <commons.jacoco.lineRatio>0.96</commons.jacoco.lineRatio> + <commons.jacoco.complexityRatio>0.96</commons.jacoco.complexityRatio> </properties> <dependencies> <!--
