Comparable<Task>
, org.gradle.api.internal.DynamicObjectAware
, org.gradle.api.internal.TaskInternal
, ExtensionAware
, Task
, VerificationTask
, org.gradle.util.Configurable<Task>
@Deprecated public class ValidateTaskProperties extends DefaultTask implements VerificationTask
ValidatePlugins
instead.Task properties must be annotated with one of:
Input
,
@Nested
,
@InputFile
,
@InputDirectory
,
@InputFiles
to mark it as an input to the task.
OutputFile
,
@OutputDirectory
to mark it as an output of the task.
Inject
marks a Gradle service used by the task.Console
marks a property that only influences the console output of the task.Internal
mark an internal property of the task.ReplacedBy
mark a property as replaced by another (similar to Internal
).Task.Namer
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
Constructor | Description |
---|---|
ValidateTaskProperties(TaskProvider<ValidatePlugins> delegate,
Runnable deprecationNagger) |
Deprecated.
|
Modifier and Type | Method | Description |
---|---|---|
ConfigurableFileCollection |
getClasses() |
Deprecated.
The classes to validate.
|
ConfigurableFileCollection |
getClasspath() |
Deprecated.
The classpath used to load the classes under validation.
|
boolean |
getEnableStricterValidation() |
Deprecated.
Enable the stricter validation for cacheable tasks for all tasks.
|
boolean |
getFailOnWarning() |
Deprecated.
Returns whether the build should break when the verifications performed by this task detects a warning.
|
boolean |
getIgnoreFailures() |
Deprecated.
Specifies whether the build should break when the verifications performed by this task fail.
|
RegularFileProperty |
getOutputFile() |
Deprecated.
Returns the output file to store the report in.
|
void |
setEnableStricterValidation(boolean enableStricterValidation) |
Deprecated.
Enable the stricter validation for cacheable tasks for all tasks.
|
void |
setFailOnWarning(boolean failOnWarning) |
Deprecated.
Specifies whether the build should break when the verifications performed by this task detects a warning.
|
void |
setIgnoreFailures(boolean ignoreFailures) |
Deprecated.
Specifies whether the build should break when the verifications performed by this task fail.
|
appendParallelSafeAction, compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getIdentityPath, getImpliesSubProjects, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getSharedResources, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTaskIdentity, getTemporaryDir, getTemporaryDirFactory, getTimeout, hasProperty, hasTaskActions, injectIntoNewInstance, isEnabled, isHasCustomActions, mustRunAfter, onlyIf, onlyIf, prependParallelSafeAction, property, replaceLogger, requiresResource, requiresResource, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, toString
@Inject public ValidateTaskProperties(TaskProvider<ValidatePlugins> delegate, Runnable deprecationNagger)
@Internal public boolean getIgnoreFailures()
VerificationTask
getIgnoreFailures
in interface VerificationTask
public void setIgnoreFailures(boolean ignoreFailures)
setIgnoreFailures
in interface VerificationTask
ignoreFailures
- false to break the build on failure, true to ignore the failures. The default is false.@Internal public ConfigurableFileCollection getClasses()
@Internal public ConfigurableFileCollection getClasspath()
@Internal public boolean getFailOnWarning()
@Internal public boolean getEnableStricterValidation()
public void setEnableStricterValidation(boolean enableStricterValidation)
@Internal public RegularFileProperty getOutputFile()
public void setFailOnWarning(boolean failOnWarning)
failOnWarning
- true
to break the build on warning, false
to ignore warnings. The default is true
.