Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for distributionSha256Sum (0.29 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

        }
    
        def "check inputs"() {
            expect:
            TaskPropertyTestUtils.getProperties(wrapper).keySet() == WrapUtil.toSet(
                "distributionBase", "distributionPath", "distributionUrl", "distributionSha256Sum",
                "distributionType", "archiveBase", "archivePath", "gradleVersion", "networkTimeout", "validateDistributionUrl")
        }
    
        def "execute with extant wrapper jar parent directory and extant wrapper jar"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            when:
            run "wrapper", "--gradle-distribution-sha256-sum", "somehash"
    
            then:
            file("gradle/wrapper/gradle-wrapper.properties").text.contains("distributionSha256Sum=somehash")
        }
    
        def "generated wrapper scripts for given network timeout from command-line"() {
            when:
            run "wrapper", "--network-timeout", "7000"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Those methods should never be directly implemented.
    
    ==== Wrapper task configuration
    If `gradle-wrapper.properties` contains the `distributionSha256Sum` property, you must specify a sum.
    You can specify a sum in the wrapped task configuration or with the `--gradle-distribution-sha256-sum` task option.
    
    ==== Changes in the AbstractCodeQualityPlugin class
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top