show/hide this revision's text 2 Updated to reflect correct solution.

You can do that

First of all, but you need some minor changes:package is a reserved keyword, so you can't use it as a a package name;.

Second of all, you can't do that in Groovy, since the dot notation is used for classes, not for scripts, so you need a compiled class file to use it.

Therefore

Still, you can replace the code changes to groovyc my/some/MyClass.groovy && groovy command with java + classpath:

java -cp /usr/share/java/groovy/embeddable/groovy-all-1.6.3.jar:. my.some.MyClass.

You can add an alias to it 'g_java' for instance to make it less verbose.

show/hide this revision's text 1

You can do that, but you need some minor changes:

  • package is a reserved keyword, so you can't use it as a a package name;
  • the dot notation is used for classes, not for scripts, so you need a compiled class file to use it.

Therefore the code changes to groovyc my/some/MyClass.groovy && groovy my.some.MyClass