File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
kotest-framework/kotest-framework-multiplatform-plugin-gradle Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ tasks.withType<KotlinCompile>().configureEach {
3434 )
3535 apiVersion = " 1.8"
3636 languageVersion = " 1.8"
37- compilerOptions.jvmTarget.set(JvmTarget .JVM_11 )
37+ compilerOptions.jvmTarget.set(JvmTarget .JVM_1_8 )
3838 }
3939}
4040
@@ -49,5 +49,5 @@ kotlin {
4949}
5050
5151tasks.withType<JavaCompile >().configureEach {
52- options.release.set(11 )
52+ options.release.set(8 )
5353}
Original file line number Diff line number Diff line change @@ -95,12 +95,12 @@ gradlePlugin {
9595
9696tasks.withType<KotlinCompile >().configureEach {
9797 kotlinOptions {
98- compilerOptions.jvmTarget.set(JvmTarget .JVM_11 )
98+ compilerOptions.jvmTarget.set(JvmTarget .JVM_1_8 )
9999 }
100100}
101101
102102tasks.withType<JavaCompile >().configureEach {
103- options.release.set(11 )
103+ options.release.set(8 )
104104}
105105
106106val updateKotestPluginConstants by tasks.registering(Sync ::class ) {
You can’t perform that action at this time.
0 commit comments