Groovy seems to fix a lot of the things I dislike about Java, and I was wondering if it would be possible to actually write an Eclipse plugin in Groovy instead of Java.
Does anyone know if this is possible, and if so how to go about it?
|
Groovy seems to fix a lot of the things I dislike about Java, and I was wondering if it would be possible to actually write an Eclipse plugin in Groovy instead of Java. Does anyone know if this is possible, and if so how to go about it?
| |||
|
feedback
|
|
I've just found a blog entry which says it's not officially supported but is actually possible. Not yet tested to see if it works, but it seems promising: | |||||
feedback
|
|
You can also use JRuby, or Javascript ... JAM Circle is a great example showing how to make great use of a scripting language in an Eclipse plugin, by allowing the end user to write his own actions and load them at runtime. | |||||
feedback
|
|
There's a proxy-like plugin that allows you to implement the plugin virtually in any language that supports JSR223 (javax.scripting) http://wiki.eclipse.org/Add_the_ability_to_write_plugins_using_jruby_or_groovy. | |||
|
feedback
|
|
@Peter, I do not think that the blog post you linked to is complete or if it will really work. It is pointing to the old version of Groovy-Eclipse, which is no longer supported and is out of date. Yes. It is possible to create your own plugins in Groovy.
As an example, here is the codenarc Eclipse plugin that was written completely in Groovy: http://sourceforge.net/projects/codenarceclipse/ | |||
|
feedback
|