- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for compileKotlin (0.33 seconds)
-
build-logic/src/main/kotlin/JavaModules.kt
configure<MultiReleaseExtension> { targetVersions(defaultVersion, javaModuleVersion) } tasks.named<JavaCompile>("compileJava9Java").configure { val compileKotlinTask = tasks.getByName("compileKotlin") as KotlinJvmCompile dependsOn(compileKotlinTask) if (enableValidation) { compileKotlinTask.source(file("src/main/java9")) }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 22:47:58 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/changelogs/upgrading_to_okhttp_4.md
[first introduced][require_android_5] with OkHttp 3.13. Here’s what you need in `build.gradle` to target Java 8 byte code for Kotlin, Java, and Android plugins respectively. ```groovy compileKotlin { kotlinOptions { jvmTarget = "1.8" } } compileTestKotlin { kotlinOptions { jvmTarget = "1.8" } } compileJava { sourceCompatibility = JavaVersion.VERSION_1_8Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 16:58:16 GMT 2022 - 10.9K bytes - Click Count (0) -
build-logic/binary-compatibility/build.gradle.kts
compileOnly(buildLibs.kotlinCompilerEmbeddable) testImplementation(buildLibs.jsoup) testImplementation(testLibs.junit5JupiterEngine) } tasks.compileGroovy.configure { classpath += files(tasks.compileKotlin)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 927 bytes - Click Count (0)