Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TargetJdk (0.16 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                configureJavaPluginToolchainVersion(selectJdk(withJavaExtension))
            }
    
            def targetJdk = selectJdk(target)
    
            when:
            withInstallations(currentJdk, otherJdk).run(":test", "--info")
    
            then:
            executedAndNotSkipped(":test")
            outputContains("Tests running with ${targetJdk.javaHome.absolutePath}")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

                configureJavaPluginToolchainVersion(selectJdk(withJavaExtension))
            }
    
            def targetJdk = selectJdk(target)
    
            when:
            withInstallations(currentJdk, otherJdk).run(":run")
    
            then:
            executedAndNotSkipped(":run")
            outputContains("App running with ${targetJdk.javaHome.absolutePath}")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            }
    
            def targetJdk = selectJdk(target)
    
            when:
            withInstallations(currentJdk, otherJdk).run(":compileJava", "--info")
    
            then:
            executedAndNotSkipped(":compileJava")
            outputContains("Compiling with toolchain '${targetJdk.javaHome.absolutePath}'")
            classJavaVersion(javaClassFile("Foo.class")) == targetJdk.javaVersion
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                }
    
                def requestedGradleVersion = project.findProperty("gradleVersion")
                def requestedTargetJdk = project.findProperty("targetJdk")
    
                // Earlier versions of Gradle can sometimes fail to connect to the just started Gradle daemon.
                // The failure will be the "tried to connect to 100 daemons" error
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top