Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSarifSupported (0.38 sec)

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

            VersionNumber currentToolVersion = determineCheckstyleVersion(Thread.currentThread().getContextClassLoader())
            def sarifSupported = isSarifSupported(currentToolVersion)
    
            if (isHtmlReportEnabledOnly(isXmlRequired, isHtmlRequired)) {
                xmlOutputLocation = new File(parameters.temporaryDir.asFile.get(), xmlOutputLocation.name)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            then:
            succeeds("checkstyleMain")
            executedAndNotSkipped(":checkstyleMain")
        }
    
        def "can configure sarif reporting"() {
            given:
            Assume.assumeTrue(isSarifSupported())
            goodCode()
    
            when:
            buildFile << """
                checkstyleMain.reports {
                    sarif {
                        required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top