Execute a Groovy class in a package from the command line - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:51:06Z http://stackoverflow.com/feeds/question/919060 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919060/execute-a-groovy-class-in-a-package-from-the-command-line 0 Execute a Groovy class in a package from the command line Olivier Gourment 2009-05-28T03:36:46Z 2009-06-01T19:16:46Z <p>Is there a way to execute a Groovy class by specifying the package with dots, as with java?</p> <p>Example: File ./my/package/MyClass.groovy:</p> <pre><code>package my.package class MyClass { static void main(String[] args) { println "ok" } } </code></pre> <pre> > cd my/package my/package> groovy MyClass ok > cd ../.. > groovy my/package/MyClass.groovy ok > groovy my/package/MyClass ok > groovy my.package.MyClass Caught: java.io.FileNotFoundException: my.package.MyClass </pre> <p>I was expecting the last command to work. I tried various ways of setting the classpath, to no avail. </p> http://stackoverflow.com/questions/919060/execute-a-groovy-class-in-a-package-from-the-command-line/920343#920343 0 Answer by Robert Munteanu for Execute a Groovy class in a package from the command line Robert Munteanu 2009-05-28T11:14:53Z 2009-06-01T19:16:46Z <p>First of all, <em>package</em> is a reserved keyword, so you can't use it as a a package name.</p> <p>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.</p> <p>Still, you can replace the groovy command with java + classpath: </p> <p><code>java -cp /usr/share/java/groovy/embeddable/groovy-all-1.6.3.jar:. my.some.MyClass</code>. </p> <p>You can add an alias to it 'g_java' for instance to make it less verbose.</p>