Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getHighestSupportedLTS (0.59 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileJavaVersionIntegrationTest.groovy

            succeeds "compileJava"
            then:
            skipped ":compileJava"
    
            when:
            executer.withJavaHome AvailableJavaHomes.getHighestSupportedLTS().javaHome
            succeeds "compileJava", "--info"
            then:
            executedAndNotSkipped ":compileJava"
            output.contains "Value of input property 'javaVersion' has changed for task ':compileJava'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/JavaExecJavaVersionIntegrationSpec.groovy

            succeeds "runHelloWorld"
            then:
            executedAndNotSkipped ":runHelloWorld"
    
            when:
            executer.withJavaHome AvailableJavaHomes.getHighestSupportedLTS().javaHome
            succeeds "runHelloWorld", "--info"
            then:
            executedAndNotSkipped ":runHelloWorld"
            output.contains "Value of input property 'javaVersion' has changed for task ':runHelloWorld'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 21:27:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

            }
        }
    
        static class HighestSupportedLTSJavaHomeAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return AvailableJavaHomes.getHighestSupportedLTS()
            }
        }
    
        static class LowestSupportedLTSJavaHomeAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

            return getJdk(JavaVersion.VERSION_21);
        }
    
        @Nullable
        public static Jvm getJdk22() {
            return getJdk(JavaVersion.VERSION_22);
        }
    
        @Nullable
        public static Jvm getHighestSupportedLTS() {
            return getJdk21();
        }
    
        @Nullable
        public static Jvm getLowestSupportedLTS() {
            return getJdk8();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top