Tech
10/21/2022, 7:21 PMkotlin("jvm") version "1.7.20"
Trying to use data objects but run into this error The feature "data objects" is only available since language version 1.8
, thanks in advance.ephemient
10/21/2022, 7:39 PMStephan Schroeder
10/22/2022, 6:04 PMtasks.withType<KotlinCompile> {
kotlinOptions {
languageVersion = "1.8"
}
}
ephemient
10/22/2022, 6:06 PM