Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for spotbugs (0.17 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/JavaConventionPluginTest.kt

            assertTrue(result.output.contains("Checkstyle rule violations were found."))
            assertTrue(result.output.contains("Checkstyle violations by severity: [warning:1]"))
        }
    
        @Test
        fun `fails on spotbugs error`() {
            testProjectDir.newFolder("src", "main", "java", "com", "example")
            testProjectDir.newFile("src/main/java/com/example/Foo.java").writeText("""
                package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    }
    ----
    =====
    ====
    
    == Things to note
    
    === Applying an external plugin in convention plugin
    
    The `com.myorg.java-conventions` plugin uses the SpotBugs plugin to perform static code analysis.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    }
    ----
    =====
    ====
    
    == Things to note
    
    === Applying an external plugin in convention plugin
    
    The `com.myorg.java-conventions` plugin uses the SpotBugs plugin to perform static code analysis.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://github.com/asciidoctor/asciidoctor-gradle-plugin/tags
            static asciidoctor = Versions.of("3.3.2", "4.0.2")
    
            // https://plugins.gradle.org/plugin/com.github.spotbugs
            static spotbugs = "6.0.10"
    
            // https://plugins.gradle.org/plugin/com.bmuschko.docker-java-application
            static docker = "9.4.0"
    
            // https://plugins.gradle.org/plugin/io.spring.dependency-management
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

                    }
                    configurations.all { config ->
                        config.getResolutionStrategy().eachDependency { dep ->
                            if (dep.getRequested().getName() == "spotbugs-annotations") {
                                dep.useTarget("com.github.spotbugs:spotbugs-annotations:4.8.1")
                                dep.because("Because I said so")
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ==== The FindBugs plugin has been removed
    
    The deprecated FindBugs plugin has been removed.
    As an alternative, you can use the link:https://plugins.gradle.org/plugin/com.github.spotbugs[SpotBugs plugin] from the link:https://plugins.gradle.org/search?term=spotbugs[Gradle Plugin Portal].
    
    ==== The JDepend plugin has been removed
    
    The deprecated JDepend plugin has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

             <trusted-key id="98465301A4939C0279F2E847D89D05374952262B" group="org.jetbrains.dokka"/>
             <trusted-key id="9857C388D7D1D9D031274CD0A5DEF5A76F94A471" group="com.github.spotbugs"/>
             <trusted-key id="9E84765A7AA3E3D3D5598A408E3F0DE7AE354651" group="^com[.]squareup($|([.].*))" regex="true"/>
             <trusted-key id="A2570288E10932263E8326CBAA49C633B4734832">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top