Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 405 for distributionId (0.45 sec)

  1. platforms/jvm/ear/build.gradle.kts

        testImplementation(project(":war"))
        testImplementation(libs.ant)
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/build.gradle.kts

        integTestImplementation(project(":native"))
        integTestImplementation(libs.jetty)
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/tasks/wrapper/internal/*")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/build.gradle.kts

        testFixturesImplementation(libs.guava)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))  {
            because("There are integration tests that assert that all the tasks of a full distribution are reported (these should probably move to ':integTests').")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            prepareWrapper(baseUrl)
            server.expect(server.get("/$TEST_DISTRIBUTION_URL")
                .sendFile(distribution.binDistribution))
            server.expect(server.get("/versions/current").send("""{ "version" : "7.6" }"""))
            server.expect(server.head("/distributions/gradle-7.6-bin.zip"))
    
            when:
            result = runWithVersion(baseUrl, "latest")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/build.gradle.kts

        testImplementation(project(":language-java"))
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes()
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/internal/jacoco/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/software/ivy/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("SamplesIvyPublishIntegrationTest test applies the java-library plugin.")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/reporting/build.gradle.kts

        testImplementation(libs.jsoup)
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("BuildDashboard has specific support for JVM plugins (CodeNarc, JaCoCo)")
        }
    }
    
    strictCompile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/build.gradle.kts

        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        testImplementation(libs.xmlunit)
    
    
        integTestImplementation(project(":internal-integ-testing"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/antlr/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
        testImplementation(project(":file-collections"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/api/plugins/antlr/internal/*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/maven/build.gradle.kts

        testFixturesImplementation(project(":dependency-management"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top