I am using Groovysh and I need to load some classes with Grape. Right now I am trying this:
> @Grab(group='group.example', module='module.example', version='1.2.3')
> import group.example.TheClass
> theClass = new TheClass()
However, after I enter the import, Groovy says
groovysh_evaluate: 4: unable to resolve class
The curious thing is if I try this:
> @Grab(group='group.example', module='module.example', version='1.2.3')
> import group.example.TheClass
> theClass = new TheClass()
> import group.example.TheClass
> theClass = new TheClass()
The first import and declaration fail, but the second ones succeed. This might be a bug or maybe I'm doing something wrong. I'm currently using Groovy 2.4.12, any help would be greatly appreciated. When I try the same thing in a script, it works fine so I am very confused. I've also tried playing with interpreterMode but also with no luck.
Try this way: