Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 489 for distributionId (0.19 sec)

  1. apache-maven/pom.xml

      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
      <description>The Apache Maven distribution, source and binary, in zip and tar.gz formats.</description>
    
      <properties>
        <distributionFileName>${distributionId}-${project.version}</distributionFileName>
      </properties>
    
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pom.xml

        <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
        <maven.baseline>3.8.8</maven.baseline>
        <!-- Control the name of the distribution and information output by mvn -->
        <distributionId>apache-maven</distributionId>
        <distributionShortName>Maven</distributionShortName>
        <distributionName>Apache Maven</distributionName>
        <maven.site.path>ref/4-LATEST</maven.site.path>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

     *
     * While the content of the Docs and Src distribution can be no further controlled,
     * the content of the Bin (as well as Normalized and All) distribution are controlled
     * by the dependencies defined on other projects in the build. This allows the
     * definition of reduced distributions (e.g. a Core distribution without Native plugins)
     * to be used for testing.
     *
     * Other projects may depend on distributions using on their test runtime classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            )
            file('build/distributions/TestProject-foo.zip').assertIsFile()
            file('build/distributions/custom-bar.zip').assertIsFile()
            file('build/distributions/custom-baz.zip').assertIsFile()
            file('build/distributions/TestProject-foo.tar').assertIsFile()
            file('build/distributions/custom-bar.tar').assertIsFile()
            file('build/distributions/custom-baz.tar').assertIsFile()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            def path = "/distributions/8.0-RC-5"
            def url = "${httpServer.uri}" + path
            when:
            run("wrapper", "--gradle-distribution-url", "${url}", "--offline")
    
            then:
            succeeds()
        }
    
        def "wrapper task with distribution url from command-line respects --no-validate-url"() {
            httpServer.start()
            def path = "/distributions/8.0-RC-5"
            def url = "${httpServer.uri}" + path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

        def "cleans up unused version-specific cache directories and corresponding #type distributions"() {
            given:
            requireOwnGradleUserHomeDir() // because we delete caches and distributions
    
            and:
            def oldButRecentlyUsedGradleDist = versionedDistDirs(type.version("1.4.5"), USED_TODAY, "my-dist-1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    `--gradle-distribution-sha256-sum`::
    The SHA256 hash sum used for <<#sec:verification,verifying the downloaded Gradle distribution>>.
    
    `--network-timeout`::
    The network timeout to use when downloading the Gradle distribution, in ms. The default value is `10000`.
    
    `--no-validate-url`::
    Disables the validation of the configured distribution URL.
    
    `--validate-url`::
    Enables the validation of the configured distribution URL. Enabled by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

        integTestImplementation(testFixtures(project(":file-temp")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("This is required by ProjectBuilder, but ProjectBuilder cannot declare :distributions-core as a dependency due to conflicts with other distributions.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         */
        @Option(option = "distribution-type", description = "The type of the Gradle distribution to be used by the wrapper.")
        public void setDistributionType(DistributionType distributionType) {
            this.distributionType = distributionType;
        }
    
        /**
         * The list of available gradle distribution types.
         */
        @OptionValues("distribution-type")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

            def projectDir = 'C:...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
Back to top