BuddMurray 0 Unverified User

Hi pros
I just started a project at work which requires Groovy development in a Grails generated project. I got the project handed to me "as is" from my boss and I don't know much about Grails and Groovy. after exploring the project and got it running via "Grails run-app" from within the project's root directory. however, when I open the project via "Eclipse", one of the classes in the "grails-app\services\" complains that it "cannot resolve" the objects instantiated from another classe from the "src\groovy\" directory. so I used "import" statement to bring the reference over. Now, the references of the objects from that classes were cleared, yet it starts to complain about not able to resolve the newly added "import" statements...

I realized that the Grails project is not packaged like a normal Java project, therefore I don't know how to import a class reference from within the same Grails project but different sub directories. Any help will be greatly appreciated.

BuddMurray