Hi Julien,
See this thread on the Groovy forums:
http://groovy.329449.n5.nabble.com/C...-td356622.html
It looks like you can get around this by creating aliases for the problem class names and applying traditional capitalization to those aliases. For example, if I adjust your "testsmall" function to the following, it runs correctly:
Code:
import testSmall.test_class as Test_class
String testsmall(){
Test_class data = new Test_class()
return "OK"
}
Not exactly elegant, but this appears to be the current workaround, and seems a little easier than renaming library classes at least. Hope it helps.
Regards,
Ben