hi all, I've got the following in my top level bui...
# gradle
c
hi all, I've got the following in my top level build.gradle.kts:
Copy code
allprojects {
    ...
    
    tasks.withType<KotlinCompile> {
        kotlinOptions {
            freeCompilerArgs = listOf("-Xjsr305=strict")
            jvmTarget = "11"
            languageVersion = "1.9"
        }
    }

   ...
}
And IntelliJ lets me use
data object
as expected, however when I go to compile or run anything I get:
The binary version of its metadata is 1.9.0, expected version is 1.7.1.
This is in a spring-boot project if any of the compiler plugins might not play nicely with 1.9
c
in addition to
languageVersion
typically
apiVersion
is also set.
m
t
could you share build scan or your project, it maybe not related to the issue above