Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for toolsJar (0.19 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

                File toolsJar = jvm.getToolsJar();
                if (toolsJar == null) {
                    throw new IllegalStateException("Could not find tools.jar in " + jvm.getJavaHome());
                }
    
                compilerClasspath = compilerClasspath.plus(
                    Collections.singletonList(toolsJar)
                );
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/build.gradle.kts

        testImplementation(projectTests(":analysis:low-level-api-fir"))
    
        testImplementation(kotlinTest("junit"))
        testCompileOnly(toolsJarApi())
        testRuntimeOnly(toolsJar())
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    kotlin {
        explicitApi()
    }
    
    sourceSets {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/build.gradle.kts

        testImplementation(projectTests(":analysis:analysis-test-framework"))
        testImplementation(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
        testCompileOnly(toolsJarApi())
        testRuntimeOnly(toolsJar())
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/build.gradle.kts

        testImplementation(kotlinTest("junit"))
        testApi(projectTests(":analysis:analysis-test-framework"))
    
        testCompileOnly(toolsJarApi())
        testRuntimeOnly(toolsJar())
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

            if (JavaVersion.current().isJava9Compatible()) {
                return Class.forName("com.sun.jdi.Bootstrap")
            } else {
                ClassLoader classLoader = new URLClassLoader(Jvm.current().toolsJar.toURI().toURL())
                return classLoader.loadClass("com.sun.jdi.Bootstrap")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top