Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 424 for distributionId (0.33 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/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection2 = Mock(ConsumerConnection)
            def distribution1 = Mock(Distribution)
            def distribution2 = Mock(Distribution)
    
            when:
            def impl = loader.create(distribution1, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution2, loggerFactory, progressListener, params, cancellationToken)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K 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/distributions-full/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.packaging")
        id("gradlebuild.verify-build-environment")
        id("gradlebuild.install")
    }
    
    description = "The collector project for the entirety of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-publishing")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/build.gradle.kts

        testFixturesImplementation(project(":internal-integ-testing"))
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
        integTestRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
        integTestDistributionRuntimeClasspath(project(":distributions-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/build.gradle.kts

        testRuntimeOnly(project(":distributions-jvm"))
    
        integTestImplementation(testFixtures(project(":plugins-java-base")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("The full distribution is required to run the GroovyToJavaConversionIntegrationTest")
        }
        crossVersionTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/signing/build.gradle.kts

        testRuntimeOnly(testFixtures(project(":security")))
        testRuntimeOnly(project(":distributions-publishing")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-publishing"))
    }
    
    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.4K bytes
    - Viewed (0)
Back to top