diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-23 17:52:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 12:22:17 +0000 |
commit | 736f84acb4e17cc651d82e768b2bd393a815c0b1 (patch) | |
tree | 194cc8431c1349bd4c6c1c1190f8dacd81968cdf /build-logic | |
parent | cd61f58d44dcc00a31b8bf97ef74d84e5eb1cfbd (diff) |
Misc cleanups and fixes (#1611)
Diffstat (limited to 'build-logic')
-rw-r--r-- | build-logic/android-plugins/build.gradle.kts | 14 | ||||
-rw-r--r-- | build-logic/automation-plugins/build.gradle.kts | 14 | ||||
-rw-r--r-- | build-logic/kotlin-plugins/build.gradle.kts | 14 |
3 files changed, 24 insertions, 18 deletions
diff --git a/build-logic/android-plugins/build.gradle.kts b/build-logic/android-plugins/build.gradle.kts index e013e9f8..8c4315dd 100644 --- a/build-logic/android-plugins/build.gradle.kts +++ b/build-logic/android-plugins/build.gradle.kts @@ -13,13 +13,15 @@ plugins { `kotlin-dsl-precompiled-script-plugins` } -tasks.withType<JavaCompile>().configureEach { - sourceCompatibility = JavaVersion.VERSION_11.toString() - targetCompatibility = JavaVersion.VERSION_11.toString() -} +afterEvaluate { + tasks.withType<JavaCompile>().configureEach { + sourceCompatibility = JavaVersion.VERSION_11.toString() + targetCompatibility = JavaVersion.VERSION_11.toString() + } -tasks.withType<KotlinCompile>().configureEach { - kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + tasks.withType<KotlinCompile>().configureEach { + kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + } } gradlePlugin { diff --git a/build-logic/automation-plugins/build.gradle.kts b/build-logic/automation-plugins/build.gradle.kts index 130b0807..15c5baa9 100644 --- a/build-logic/automation-plugins/build.gradle.kts +++ b/build-logic/automation-plugins/build.gradle.kts @@ -13,13 +13,15 @@ plugins { `kotlin-dsl-precompiled-script-plugins` } -tasks.withType<JavaCompile>().configureEach { - sourceCompatibility = JavaVersion.VERSION_11.toString() - targetCompatibility = JavaVersion.VERSION_11.toString() -} +afterEvaluate { + tasks.withType<JavaCompile>().configureEach { + sourceCompatibility = JavaVersion.VERSION_11.toString() + targetCompatibility = JavaVersion.VERSION_11.toString() + } -tasks.withType<KotlinCompile>().configureEach { - kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + tasks.withType<KotlinCompile>().configureEach { + kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + } } gradlePlugin { diff --git a/build-logic/kotlin-plugins/build.gradle.kts b/build-logic/kotlin-plugins/build.gradle.kts index 8b1a1889..229c5f17 100644 --- a/build-logic/kotlin-plugins/build.gradle.kts +++ b/build-logic/kotlin-plugins/build.gradle.kts @@ -13,13 +13,15 @@ plugins { `kotlin-dsl-precompiled-script-plugins` } -tasks.withType<JavaCompile>().configureEach { - sourceCompatibility = JavaVersion.VERSION_11.toString() - targetCompatibility = JavaVersion.VERSION_11.toString() -} +afterEvaluate { + tasks.withType<JavaCompile>().configureEach { + sourceCompatibility = JavaVersion.VERSION_11.toString() + targetCompatibility = JavaVersion.VERSION_11.toString() + } -tasks.withType<KotlinCompile>().configureEach { - kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + tasks.withType<KotlinCompile>().configureEach { + kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } + } } dependencies { |