Hi, this is quite useful plugin but it lacks the documentation.
In below lines please specify what does minLines, minBranches and minInstructions means so that we can configure proper values.
If I just remove few lines from my code(no new line added) currently build is failing not sure which parameter to adjust to make it work.
<violations>
<!-- Default 'false'. Fail build if violation rules weren't met -->
<failOnViolation>true</failOnViolation>
<!-- Sets min coverage rule for: instructions, lines, branches -->
<minCoverage>0.7</minCoverage>
<!-- Each rule could be configured separately -->
<!-- Default '0.0'. If value is '0.0' then the rule is disabled -->
<minLines>0.1</minLines>
<minBranches>0.7</minBranches>
<minInstructions>1.0</minInstructions>
</violations>
Hi, this is quite useful plugin but it lacks the documentation.
In below lines please specify what does
minLines,minBranchesandminInstructionsmeans so that we can configure proper values.If I just remove few lines from my code(no new line added) currently build is failing not sure which parameter to adjust to make it work.