Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPmdClasspath (0.13 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdActionParameters.java

    import org.gradle.api.provider.Property;
    
    /**
     * Parameters used to configure a {@link PmdAction}.
     */
    public interface PmdActionParameters extends AntWorkParameters {
    
        ConfigurableFileCollection getPmdClasspath();
    
        Property<TargetJdk> getTargetJdk();
    
        ListProperty<String> getRuleSets();
    
        ConfigurableFileCollection getRuleSetConfigFiles();
    
        Property<Boolean> getIgnoreFailures();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

        PmdInvoker(PmdActionParameters parameters) {
            this.parameters = parameters
        }
    
        void execute(AntBuilderDelegate ant) {
            FileCollection pmdClasspath = parameters.getPmdClasspath().filter(new FileExistFilter())
    
            // PMD uses java.class.path to determine it's implementation classpath for incremental analysis
            // Since we run PMD inside the Gradle daemon, this pulls in all of Gradle's runtime.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.plugins.quality.Pmd.getClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (Pmd.java:0)
    Method <org.gradle.api.plugins.quality.Pmd.getPmdClasspath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (Pmd.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top