Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for distributionUrl (0.27 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

                println("updating wrapper to $label version: ${versionInfo.version} (downloadUrl: ${versionInfo.downloadUrl})")
                wrapperTask.get().distributionUrl = versionInfo.downloadUrl
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.properties

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
    networkTimeout=10000
    validateDistributionUrl=true
    zipStoreBase=GRADLE_USER_HOME
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 250 bytes
    - Viewed (0)
  3. .mvn/wrapper/maven-wrapper.properties

    # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
    distributionSha256Sum=83aaf914c785c9faed661f223000a92d1de9553f5c82d3b4362e66d9c031625f
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 21:44:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            def zipFile = createZip { }
    
            def zipFileUri = zipFile.toURI().toASCIIString()
            tmpDir.file('gradle/wrapper/gradle-wrapper.properties') << "distributionUrl=$zipFileUri"
    
            expect:
            factory.getDefaultDistribution(tmpDir.testDirectory, false).displayName == "Gradle distribution '$zipFileUri'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.wrapper.Wrapper.xml

                </tr>
                <tr>
                    <td>archiveBase</td>
                    <td><literal>PathBase.GRADLE_USER_HOME</literal></td>
                </tr>
                <tr>
                    <td>distributionUrl</td>
                    <td><literal>"http\://services.gradle.org/distributions/gradle-${gradleVersion}-bin.zip"</literal>
                        (or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         * don't need to provide a download server then.
         */
        @Input
        public String getDistributionUrl() {
            if (distributionUrl != null) {
                return distributionUrl;
            }
    
            return WrapperGenerator.getDistributionUrl(gradleVersionResolver.getGradleVersion(), distributionType);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

            println "use wrapper from $wrapperVersion to build using $executionVersion"
    
            buildFile << """
    task wrapper (type: Wrapper, overwrite: true) {
        gradleVersion = '$executionVersion.version.version'
        distributionUrl = '${executionVersion.binDistribution.toURI()}'
    }
    
    println "using Java version \${System.getProperty('java.version')}"
    
    task hello {
        doLast {
            println "hello from \$gradle.gradleVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            LogLevel.INFO  | ["-Dorg.gradle.logging.level=info"]
        }
    
        def "tooling api uses the wrapper properties to determine which version to use"() {
            buildFile << """
            wrapper {
                distributionUrl = '${otherVersion.binDistribution.toURI()}'
            }
            task check {
                doLast {
                    assert gradle.gradleVersion == '${otherVersion.version.version}'
                }
            }"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            file(WRAPPER_PROPERTIES_PATH) << "distributionSha256Sum=$underDevelopmentDistributionChecksum\n"
            file(WRAPPER_PROPERTIES_PATH) << "distributionUrl=$underDevelopmentDistributionUrl"
    
            when:
            wrapperExecuter.withTasks("wrapper").run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/WrapperExecutor.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URI;
    import java.util.Properties;
    
    public class WrapperExecutor {
        public static final String DISTRIBUTION_URL_PROPERTY = "distributionUrl";
        public static final String DISTRIBUTION_BASE_PROPERTY = "distributionBase";
        public static final String DISTRIBUTION_PATH_PROPERTY = "distributionPath";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top