Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gradleHomeDir (1.6 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.integration-tests.gradle.kts

        // under-development Gradle distribution to be on the runtime classpath. We should
        // avoid this and instead dynamically load the classpath from `integTest.gradleHomeDir` instead.
        extendsFrom(configurations.named("integTestDistributionRuntimeOnly").get())
    }
    createTasks(sourceSet, TestType.INTEGRATION)
    configureIde(TestType.INTEGRATION)
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 16:39:23 UTC 2025
    - 2.4K bytes
    - Viewed (5)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

        abstract val distZipVersion: Property<String>
    
        override fun asArguments(): Iterable<String> {
            val distributionDir = gradleDistribution.homeDir.get().asFile
            return mapOf(
                "integTest.gradleHomeDir" to distributionDir,
                "integTest.gradleUserHomeDir" to absolutePathOf(gradleUserHomeDir.dir(gradleDistribution.name)),
                "integTest.samplesdir" to absolutePathOf(gradleSnippetsDir),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 18:02:41 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top