Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for findLowestMajorGradleVersion (0.2 sec)

  1. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/test/preconditions/TestKitPreconditions.groovy

        static class LowestMajorGradleIsAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return BaseGradleRunnerIntegrationTest.findLowestMajorGradleVersion() != null
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

                releasedGradleVersions.getDistribution(version)?.worksWith(Jvm.current())
            }
            LOWEST_MAJOR_GRADLE_VERSION = compatibleVersion
        }
    
        static String findLowestMajorGradleVersion() {
            LOWEST_MAJOR_GRADLE_VERSION
        }
    
        static String getLowestMajorGradleVersion() {
            def gradleVersion = LOWEST_MAJOR_GRADLE_VERSION
            if (gradleVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top