Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isConsoleOutput (0.22 sec)

  1. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // tag::enable-checkstyle-sarif-report[]
        }
    }
    // end::enable-checkstyle-sarif-report[]
    // end::customize-checkstyle-report[]
    
    // tag::customize-pmd[]
    pmd {
        isConsoleOutput = true
        toolVersion = "7.0.0"
        rulesMinimumPriority = 5
        ruleSets = listOf("category/java/errorprone.xml", "category/java/bestpractices.xml")
    }
    // end::customize-pmd[]
    
    // tag::pmd-threads[]
    pmd {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

            this.ruleSetFiles.from(ruleSetFiles);
        }
    
        /**
         * Whether or not to write PMD results to {@code System.out}.
         */
        public boolean isConsoleOutput() {
            return consoleOutput;
        }
    
        /**
         * Whether or not to write PMD results to {@code System.out}.
         */
        public void setConsoleOutput(boolean consoleOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top