Fix how the two kotlin compiler arguments are added
This commit is contained in:
parent
86b1640c78
commit
701c299576
|
@ -89,7 +89,7 @@ allprojects {
|
|||
}
|
||||
withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile::class) {
|
||||
with(kotlinOptions) {
|
||||
freeCompilerArgs = listOf("-Xjvm-default=all -Xlambdas=indy")
|
||||
freeCompilerArgs = listOf("-Xjvm-default=all", "-Xlambdas=indy")
|
||||
useIR = true
|
||||
jvmTarget = "1.8"
|
||||
languageVersion = "1.5"
|
||||
|
|
Loading…
Reference in New Issue