- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for sourceCompatibility (0.09 seconds)
-
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt
afterEvaluate { tasks.withType<JavaCompile>().configureEach { if (!useRelease().get()) { val version = targetJvmVersion.get().toString() sourceCompatibility = version targetCompatibility = version } } } } @JvmName("associateGroovy")Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 19 05:45:14 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts
id("gradlebuild.ci-reporting") id("gradlebuild.private-javadoc") } description = "A plugin that sets up a Kotlin DSL code that is shared between build-logic and runtime" java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } kotlin { compilerOptions { allWarningsAsErrors = true jvmTarget.set(JvmTarget.JVM_1_8) } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jan 22 14:28:13 GMT 2025 - 869 bytes - Click Count (0) -
android-test-app/build.gradle.kts
defaultConfig { minSdk = 21 targetSdk = 36 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } compileOptions { targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } buildTypes { release { isShrinkResources = true isMinifyEnabled = trueCreated: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Jul 19 12:35:48 GMT 2025 - 1.2K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.java-shared-runtime.gradle.kts
id("gradlebuild.reproducible-archives") id("gradlebuild.private-javadoc") } description = "A plugin that sets up a Java code that is shared between build-logic and runtime" java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } testing { suites { val test by getting(JvmTestSuite::class) { useSpock() dependencies {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jan 22 14:28:13 GMT 2025 - 699 bytes - Click Count (0) -
module-tests/build.gradle.kts
tasks.withType<Test> { useJUnitPlatform() enabled = testJavaVersion > 8 javaLauncher.set(javaToolchains.launcherFor { languageVersion.set(JavaLanguageVersion.of(testJavaVersion)) }) } java { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 toolchain { languageVersion.set(JavaLanguageVersion.of(21)) }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:45:42 GMT 2025 - 1.6K bytes - Click Count (0) -
regression-test/build.gradle.kts
"notClass" to "org.conscrypt.KitKatPlatformOpenSSLSocketImplAdapter,org.bouncycastle.pqc.crypto.qtesla.QTeslaKeyEncodingTests" ) } compileOptions { targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } // issue merging due to conflict with httpclient and something else
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Mar 17 15:11:24 GMT 2025 - 1.6K bytes - Click Count (0) -
android-test/build.gradle.kts
"../okhttp-logging-interceptor/src/test/java", "../okhttp-sse/src/test/java" ) } compileOptions { targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } testOptions { targetSdk = 34 unitTests.isIncludeAndroidResources = true } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() }Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Nov 21 12:33:41 GMT 2025 - 3.9K bytes - Click Count (2)