Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for getPluginsToValidate (0.26 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpringDependencyManagementPluginSmokeTest.groovy

                .build()
    
            then:
            result.output.contains('org.springframework:spring-core -> 4.0.3.RELEASE')
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'io.spring.dependency-management' : Versions.of(TestedVersions.springDependencyManagement)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ShadowPluginSmokeTest.groovy

            "com.github.johnrengelman.shadow"   | TestedVersions.shadow         | true
            "io.github.goooler.shadow"          | TestedVersions.shadowFork     | false
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'com.github.johnrengelman.shadow': Versions.of(TestedVersions.shadow),
                'io.github.goooler.shadow': Versions.of(TestedVersions.shadowFork)
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProtobufPluginSmokeTest.groovy

            then:
            result.task(":generateProto").outcome == UP_TO_DATE
            result.task(":compileJava").outcome == UP_TO_DATE
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'com.google.protobuf': Versions.of(TestedVersions.protobufPlugin)
            ]
        }
    
        @Override
        Map<String, String> getExtraPluginsRequiredForValidation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/JGitPluginSmokeTest.groovy

            then:
            result.task(':commit').outcome == SUCCESS
            result.task(':tag').outcome == SUCCESS
            result.task(':checkout').outcome == SUCCESS
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.ajoberstar.grgit': Versions.of(TestedVersions.grgit)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/FreefairAspectJPluginSmokeTest.groovy

                    }
                }
            """
    
            expect:
            runner('check')
                .forwardOutput()
                .build()
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'io.freefair.aspectj': Versions.of(TestedVersions.aspectj),
                'io.freefair.aspectj.post-compile-weaving': Versions.of(TestedVersions.aspectj)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

            new DocumentationRegistry().getDocumentationFor("upgrading_version_8","unix_file_permissions_deprecated")
    
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.gradle.playframework': Versions.of(TestedVersions.playframework)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AsciidoctorPluginSmokeTest.groovy

            }.build()
    
            then:
            file('build/docs/asciidoc').isDirectory()
    
            where:
            version << TestedVersions.asciidoctor
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            TestedVersions.asciidoctor.collectEntries([:]) { version ->
                def base = [
                    "org.asciidoctor.editorconfig",
                    "org.asciidoctor.js.convert",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleVersionsPluginSmokeTest.groovy

            result.output.contains("- log4j:log4j [1.2.14 -> 1.2.17]")
    
            file("build/dependencyUpdates/report.txt").exists()
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'com.github.ben-manes.versions': Versions.of(TestedVersions.gradleVersions)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpringBootPluginSmokeTest.groovy

            then:
            runResult.task(':bootRun').outcome == SUCCESS
            runResult.output.contains("FOO: 42")
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.springframework.boot': Versions.of(TestedVersions.springBoot)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

            then:
            result.task(':compileKotlin').outcome == UP_TO_DATE
    
            where:
            kotlinVersion << TestedVersions.kotlin.versions
        }
    
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'org.jetbrains.kotlin.jvm': TestedVersions.kotlin,
                'org.jetbrains.kotlin.js': TestedVersions.kotlin,
                'org.jetbrains.kotlin.android': TestedVersions.kotlin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top