Hello! I try to write some plugin. How I can pass ...
# intellij-plugins
c
Hello! I try to write some plugin. How I can pass some data from gradle plugin to intellij plugin?
b
There is a tooling API: https://docs.gradle.org/current/userguide/third_party_integration.html#embedding This project has an example of how to use it. Or maybe you could just write the data to a file?
c
I wrote plugin for gradle. Then I set some options in build.gradle file. And then I must pass options from build.gradle to my intellij plugin. I saw you link. Thank you! It's work.