Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRuleSetConfigFiles (0.51 sec)

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

        ConfigurableFileCollection getPmdClasspath();
    
        Property<TargetJdk> getTargetJdk();
    
        ListProperty<String> getRuleSets();
    
        ConfigurableFileCollection getRuleSetConfigFiles();
    
        Property<Boolean> getIgnoreFailures();
    
        Property<Boolean> getConsoleOutput();
    
        Property<Boolean> getStdOutIsAttachedToTerminal();
    
        ConfigurableFileCollection getAuxClasspath();
    
    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/Pmd.java

            parameters.getTargetJdk().set(getTargetJdk());
            parameters.getRuleSets().set(getRuleSets());
            parameters.getRuleSetConfigFiles().from(getRuleSetFiles());
            if (getRuleSetConfig() != null) {
                parameters.getRuleSetConfigFiles().from(getRuleSetConfig().asFile());
            }
            parameters.getIgnoreFailures().set(getIgnoreFailures());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top