How to add run configurations as a tree
Hello,
I'm working on improving the golang plugin for IntelliJ with support for Google AppEngine for GO and I'd like to know how to add the configurations so that they form a tree.
I'm looking for something that would result in the tree that you can see for Geronimo Server or GlassFish Server in the image below:
Thank you.
Please sign in to leave a comment.
You need to return multiple ConfigurationFactory instances from your implementation of ConfigurationType.getConfigurationFactories().
Thank you!