Fix how the two kotlin compiler arguments are added

This commit is contained in:
Username404-59 2021-04-15 11:06:15 +02:00
parent 86b1640c78
commit 701c299576
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -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"