Class ValidatePlugins

java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.plugin.devel.tasks.ValidatePlugins
All Implemented Interfaces:
Comparable<Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.TaskInternal, Named, ExtensionAware, Task, Configurable<Task>

@CacheableTask public abstract class ValidatePlugins extends DefaultTask
Validates plugins by checking property annotations on work items like tasks and artifact transforms. This task should be used in Gradle plugin projects for doing static analysis on the plugin classes. The java-gradle-plugin adds a validatePlugins task, though if you cannot use this plugin then you need to register the task yourself. See the user guide for more information on incremental build and caching task outputs.
Since:
6.0
  • Constructor Details

    • ValidatePlugins

      public ValidatePlugins()
  • Method Details

    • validateTaskClasses

      public void validateTaskClasses() throws IOException
      Throws:
      IOException
    • getClasses

      The classes to validate.
    • getClasspath

      @Classpath public abstract ConfigurableFileCollection getClasspath()
      The classpath used to load the classes under validation.

      Includes the classes under validation and both the runtime-scoped dependencies and the compile-scoped ones.

    • getLauncher

      @Optional @Incubating public abstract Property<JavaLauncher> getLauncher()
      The toolchain launcher used to execute workers when forking.
      Since:
      8.1.
    • getIgnoreFailures

      @Input public abstract Property<Boolean> getIgnoreFailures()
      Specifies whether the build should break when plugin verifications fails.
    • getFailOnWarning

      @Input public abstract Property<Boolean> getFailOnWarning()
      Returns whether the build should break when the verifications performed by this task detects a warning.
    • getEnableStricterValidation

      @Input public abstract Property<Boolean> getEnableStricterValidation()
      Enable the stricter validation for cacheable tasks for all tasks.
    • getOutputFile

      @OutputFile public abstract RegularFileProperty getOutputFile()
      Returns the output file to store the report in.
    • getDocumentationRegistry

      @Inject protected abstract org.gradle.api.internal.DocumentationRegistry getDocumentationRegistry()
    • getWorkerExecutor

      @Inject protected abstract WorkerExecutor getWorkerExecutor()