Custom Import plugin Follow
I'd like to create a plugin that imports projects from a custom xml file. I have these xml files that define source, resources, libraries, etc. for a project and I would like to make a plugin for intellij to import those.
Where is a good place to start?
Thanks
Brian
Please sign in to leave a comment.
You should start with looking at the code of the Eclipse plugin: https://github.com/JetBrains/intellij-community/tree/master/plugins/eclipse
In particular, start with EclipseProjectImportProvider and EclipseProjectOpenProcessor.