Skip to content

Commit

Permalink
Ensure Kotlin 1.3 compatibility
Browse files Browse the repository at this point in the history
Closes gh-9765
  • Loading branch information
eleftherias committed May 19, 2021
1 parent 26e3436 commit 34b5524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/spring-security-config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ rncToXsd {

tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
apiVersion = "1.4"
languageVersion = "1.3"
apiVersion = "1.3"
freeCompilerArgs = ["-Xjsr305=strict", "-Xsuppress-version-warnings"]
jvmTarget = "1.8"
languageVersion = "1.4"
}
}

Expand Down

0 comments on commit 34b5524

Please sign in to comment.