I have an Eclipse RCP project and I want to use Groovy inside it. what I'm trying to do:
1) add "Groovy Nature"
2) create Groovy files in the "src" folder
3) call the Groovy class from the "View" createPartControl () method.
But I got "java.lang.ClassNotFoundException: fly.island.jface.Test", and "fly.island.jface.Test" is the Groovy class.
What should I do to use Groovy inside an Eclipse RCP project?
source
share