I want to write a Maven plugin in Groovy, but under Eclipse (Galileo).
- I've downloaded and installed Groovy-Eclipse plugin
- I've created my very simple POM file (included below).
- I've created a simple Echo mojo and place it under "/src/main/groovy/com/acme/maven/plugins/foo".
- I performed "Import Existing Maven Project" in Eclipse (using M2Eclipse plugin).
The problem is that I don't see "src/main/groovy" as a source folder, which makes it hard to develop: - I have to create the package directory structure (com/acme/maven/plugins/foo) manually - Refactoring probably won't work easily - Incremental probably won't work.
How do you guys develop your Maven plugins using Groovy in Eclipse?