Package org.gradle.api.tasks
Interface VerificationTask
- All Known Implementing Classes:
- AbstractCodeQualityTask,- AbstractTestTask,- Checkstyle,- CodeNarc,- Pmd,- RunTestExecutable,- Test,- XCTest
public interface VerificationTask
A 
VerificationTask is a task which performs some verification of the artifacts produced by a build.- 
Method SummaryModifier and TypeMethodDescriptionbooleanSpecifies whether the build should break when the verifications performed by this task fail.voidsetIgnoreFailures(boolean ignoreFailures) Specifies whether the build should break when the verifications performed by this task fail.
- 
Method Details- 
setIgnoreFailuresvoid setIgnoreFailures(boolean ignoreFailures) Specifies whether the build should break when the verifications performed by this task fail.- Parameters:
- ignoreFailures- false to break the build on failure, true to ignore the failures. The default is false.
 
- 
getIgnoreFailuresSpecifies whether the build should break when the verifications performed by this task fail.- Returns:
- false, when the build should break on failure, true when the failures should be ignored.
 
 
-