File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed
compose-destinations-codegen Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 99 sourceCompatibility = JavaVersion .VERSION_1_8
1010 targetCompatibility = JavaVersion .VERSION_1_8
1111}
12+
13+ tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
14+ kotlinOptions {
15+ jvmTarget = " 1.8"
16+ }
17+ }
Original file line number Diff line number Diff line change @@ -4,8 +4,17 @@ plugins {
44
55apply (from = " ${rootProject.projectDir} /publish.gradle" )
66
7+ java {
8+ sourceCompatibility = JavaVersion .VERSION_1_8
9+ targetCompatibility = JavaVersion .VERSION_1_8
10+ }
11+
712tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
813 kotlinOptions.freeCompilerArgs + = " -opt-in=kotlin.RequiresOptIn"
14+
15+ kotlinOptions {
16+ jvmTarget = " 1.8"
17+ }
918}
1019
1120dependencies {
Original file line number Diff line number Diff line change @@ -6,4 +6,10 @@ plugins {
66java {
77 sourceCompatibility = JavaVersion .VERSION_1_8
88 targetCompatibility = JavaVersion .VERSION_1_8
9+ }
10+
11+ tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
12+ kotlinOptions {
13+ jvmTarget = " 1.8"
14+ }
915}
You can’t perform that action at this time.
0 commit comments