1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Update Kotlin to 1.7.10

Closes gh-11374, gh-11534
This commit is contained in:
Anbu Sampath
2022-06-18 09:43:24 -03:00
committed by Marcus Da Coregio
parent 881b823a2e
commit 0c14a36ad6
3 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -110,8 +110,8 @@ rncToXsd {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
languageVersion = "1.6"
apiVersion = "1.6"
languageVersion = "1.7"
apiVersion = "1.7"
freeCompilerArgs = ["-Xjsr305=strict", "-Xsuppress-version-warnings"]
jvmTarget = "17"
}
@@ -73,6 +73,7 @@ class SessionFixationDsl {
SessionFixationStrategy.MIGRATE -> sessionFixation.migrateSession()
SessionFixationStrategy.CHANGE_ID -> sessionFixation.changeSessionId()
SessionFixationStrategy.NONE -> sessionFixation.none()
null -> null
}
}
}