I’d like to create an eclipse plug-in that, when activated (via some extra menu or context menu) starts a standalone java application that was downloaded as part of the plug-in package. I am new to eclipse plug-in development, so I’m not quite sure what I would need to do to achieve this.
Would it be possible to include the standalone application’s files within the source of the plugin and have the plugin run shell code to execute the application?
I believe that all you have to do is execute the corresponding command via
That will create a new process and run whatever program you have. I think Eclipse will allow you to do this (there are plenty of plugins that start web servers and whatnot). However, unless you do something rather special (like implement a new run configuration type for webservers or suchlike), this seems like a bad idea.