Cedric Hippmann
07/20/2023, 1:37 PMAnnotator
where i do some checks on kotlin classes. But now i cannot do any psi type checks anymore for some reason.
The following code worked fine until now and now does not work anymore. For sure I did something wrong but I can not figure out what the issue could be.
The only difference to me seems to be that i updated the sdk
version from 222.3345.118
to 231.9225.16
.
The sdk version is 231.9225.16
and org.jetbrains.kotlin
is added as a plugin dependency:
Does anyone have an idea what i did wrong or what changed so this simple type checking does not work anymore?
intellij {
pluginName.set("godot-jvm-idea-plugin")
version.set("231.9225.16")
type.set("IC")
downloadSources.set(true)
updateSinceUntilBuild.set(true)
plugins.set(listOf("java", "org.jetbrains.kotlin", "gradle"))
}