Are there any example projects using arrow meta fo...
# arrow-meta
r
Are there any example projects using arrow meta for companion IDE plugins? https://hasteb.in/nihurese.gradle this buildscript is giving me issues where i cant resolve anything (trying to auto-import IdeMetaPlugin) in intellij
i
There are missing dependencies for intelliJ in the file:
Copy code
intellij {
  version = "<Your version>" // 2019.3 or higher
  pluginName = "My Ide plugin"
  plugins = ["io.arrow-kt.arrow"]
}
But I am not sure if that is the correct published identifier for the ide-plugin in
plugins
. @Rachel might know more. 🙂
r
🙌 yes, that's the correct published identifier, however it's still no available in the official Intellij IDEA plugins page to be used in that way. We're using a repository for SNAPSHOT versions: https://meta.arrow-kt.io/idea-plugin/snapshots/1.3.61-SNAPSHOT/updatePlugins.xml
However Imran, I think it will be very useful the idea of adding examples about the IDEA plugin in
arrow-meta-examples
repository 👍
👌🏽 1
r
https://hasteb.in/ijezugaz.gradle intellij still cant find IdeMetaPlugin, or even anything from arrow-meta with that buildscript. If I go under External Libraries, I can see that the jar is there, but I can't actually use it.
i
Can you send in a link of the repo or a small repo with that bug, which I can look into ?
r
i
I’ll send in a link in 2 hours with an initial setup 🙂
Thanks for raising this issue @redrield. Here is what was missing in your project to define intelliJ plugins in general. https://github.com/arrow-kt/arrow-meta-examples/pull/19/files The Meta dsl for the Ide can’t be accessed, yet. I explained it in the PR. I’ll keep you updated.