I'm working on a Java project which loads in Groovy scripts. Everything works as expected, except for groovy scripts which reference other groovy scripts, in this case, a utility class. Whenever a script is executed which includes said utility class, the plugin loader throws an exception "groovy.lang.MissingPropertyException: No such property: Util.
Before I suspect that something is wrong with the Java code, I wanted to first understand how Groovy "finds" other classes. If I'm running this project in eclipse, and the entire project directory which includes all these groovy scripts is in the classpath should all the groovy scripts be able to "find" each other?
Or any other thoughts?