Cedric Hippmann
03/26/2023, 11:04 AM// build.gradle.kts
plugins {
id("my-plugin")
}
myPlugin {
someConfiguration = true
}
How could i check if the property someConfiguration
is set from within a Intellij plugin in let's say a Annotator
?
As a side note: I'm in control of both the gradle extension and the IDE plugin.
I am able to see that my extension is applied to the project when using
GradleUtil.findGradleModuleData(module).children.map { child -> child.data }.filterIsInstance<GradleExtensions>().firstOrNull()
but i cannot access it's configuration.