Hey Team,
We have enabled Jacoco for one of our application where we are not getting expected results for the code coverage.
Following is our generated coverage report :

For which we are using following parameters :
<jacoco.coverage.line>0.95</jacoco.coverage.line>
<jacoco.coverage.branch>0.68</jacoco.coverage.branch>
<jacoco.coverage.instruction>0.91</jacoco.coverage.instruction>
<jacoco.coverage.complexity>0.54</jacoco.coverage.complexity>
<jacoco.coverage.method>1</jacoco.coverage.method>
<jacoco.coverage.class>1</jacoco.coverage.class>
Ideally our ```mvn install``` should have been failed as it is failing on our local host for the provided values but seems like not the case.
Want to understand what we are missing here?