Interface JacocoViolationRulesContainer
public interface JacocoViolationRulesContainer
The violation rules configuration for the
JacocoReport
task.- Since:
- 3.4
-
Method Summary
Modifier and TypeMethodDescriptiongetRules()
Gets all violation rules.boolean
Specifies whether build should fail in case of rule violations.rule
(Action<? super JacocoViolationRule> configureAction) Adds a violation rule.void
setFailOnViolation
(boolean ignore) Indicates whether build should fail in case of rule violation.
-
Method Details
-
setFailOnViolation
void setFailOnViolation(boolean ignore) Indicates whether build should fail in case of rule violation.- Parameters:
ignore
- Only render violation but do not fail build
-
isFailOnViolation
Specifies whether build should fail in case of rule violations. Defaults to true. -
getRules
Gets all violation rules. Defaults to an empty list. -
rule
Adds a violation rule. Any number of rules can be added.
-