Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getPmdClasspath (0.17 sec)

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

            workQueue.submit(PmdAction.class, this::setupParameters);
        }
    
        private void setupParameters(PmdActionParameters parameters) {
            parameters.getAntLibraryClasspath().setFrom(getPmdClasspath());
            parameters.getPmdClasspath().setFrom(getPmdClasspath());
            parameters.getTargetJdk().set(getTargetJdk());
            parameters.getRuleSets().set(getRuleSets());
            parameters.getRuleSetConfigFiles().from(getRuleSetFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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