Skip to content

Commit 767899a

Browse files
committed
Fix Java and Kotlin targets incompatibility in guide
Fix for the change introduced in Kotlin 1.8.0 via this issue: https://youtrack.jetbrains.com/issue/KT-54993
1 parent bc6112e commit 767899a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

guide/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
apply plugin: 'kotlin'
66
apply plugin: 'kotlinx-serialization'
77

8+
kotlin {
9+
jvmToolchain(8)
10+
}
11+
812
dependencies {
913
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
1014
testImplementation "org.jetbrains.kotlinx:kotlinx-knit-test:$knit_version"

0 commit comments

Comments
 (0)