Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testVersions (0.05 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    fun DistributionTest.setSystemPropertiesOfTestJVM(defaultVersions: String) {
        // use -PtestVersions=all or -PtestVersions=1.2,1.3…
        val integTestVersionsSysProp = "org.gradle.integtest.versions"
        val testVersions = project.providers.gradleProperty("testVersions")
        if (testVersions.isPresent) {
            systemProperties[integTestVersionsSysProp] = testVersions.get()
        } else {
            systemProperties[integTestVersionsSysProp] = defaultVersions
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 16:39:23 UTC 2025
    - 12.8K bytes
    - Viewed (0)
Back to top