In Grails 2 there was a great run-script
command that allowed to execute custom Groovy script with all project classes available. Is there something similar in Grails 3?
P.S. The only way we found is defining out own RunScriptCommand
which implements ApplicationCommand
. This command requires a separate gradle project, which we are not happy with. Is there a better way?