This is an automated email from the ASF dual-hosted git repository. aherbert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-statistics.git
commit e2498dd52e9ac5a0aed1cf4faa005f77dfb3c042 Author: aherbert <[email protected]> AuthorDate: Tue Jun 23 14:59:08 2020 +0100 Increase jacoco validation limits. Drop the custom limits as those in commons-parent are higher. Increase method coverage to 100%. --- pom.xml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index a307802..7fb3ec3 100644 --- a/pom.xml +++ b/pom.xml @@ -97,12 +97,9 @@ <!-- Workaround to avoid duplicating config files. --> <statistics.parent.dir>${basedir}</statistics.parent.dir> - <commons.jacoco.classRatio>0.96</commons.jacoco.classRatio> - <commons.jacoco.instructionRatio>0.8</commons.jacoco.instructionRatio> - <commons.jacoco.methodRatio>0.8</commons.jacoco.methodRatio> - <commons.jacoco.branchRatio>0.8</commons.jacoco.branchRatio> - <commons.jacoco.complexityRatio>0.8</commons.jacoco.complexityRatio> - <commons.jacoco.lineRatio>0.85</commons.jacoco.lineRatio> + <!-- Increase from commons-parent --> + <commons.jacoco.methodRatio>1.00</commons.jacoco.methodRatio> + <!-- Set to true when coverage goals are achieved --> <commons.jacoco.haltOnFailure>false</commons.jacoco.haltOnFailure> <commons.site.path>statistics</commons.site.path>
