How to invoke groovy with 'java' from command line - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:58:52Zhttp://stackoverflow.com/feeds/question/378905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378905/how-to-invoke-groovy-with-java-from-command-line1How to invoke groovy with 'java' from command lineMiguel Ping2008-12-18T19:22:29Z2008-12-18T20:00:35Z
<p>I have to ship some groovy code to some users that have only java installed (no grooy, no $groovy_home, etc). I'm trying to invoke groovy from the commandline but I'm having no luck. Here's my bat file:</p>
<pre><code>java -classpath .;lib;bin;bin-groovy introspector.AclCollector
</code></pre>
<p>And here's my exception:</p>
<pre><code>Exception in thread "main" java.lang.NoClassDefFoundError: groovy/lang/GroovyObject
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
Caused by: java.lang.ClassNotFoundException: groovy.lang.GroovyObject
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
... 12 more
Could not find the main class: introspector.AclCollector. Program will exit.
</code></pre>
<p>Does anyone have a clue? I have 'groovy-all-1.6-beta-1.jar' in \lib dir.</p>
http://stackoverflow.com/questions/378905/how-to-invoke-groovy-with-java-from-command-line/378915#3789154Answer by frankodwyer for How to invoke groovy with 'java' from command linefrankodwyer2008-12-18T19:25:48Z2008-12-18T19:25:48Z<p>I think you need to explicitly list the groovy jar in the classpath</p>
http://stackoverflow.com/questions/378905/how-to-invoke-groovy-with-java-from-command-line/379045#3790458Answer by VonC for How to invoke groovy with 'java' from command lineVonC2008-12-18T20:00:35Z2008-12-18T20:00:35Z<p>You have <a href="http://marc.info/?l=ant-user&m=120407907827987&w=2" rel="nofollow">here</a> another example of Groovy app called from Java (in this case, from ant, but the general idea is the same).</p>
<pre><code>java -cp [...];%GROOVY_HOME%/embeddable/groovy-all-1.5.4.jar;[..]
</code></pre>
<p>As mentioned by frankowyer, you have the exact groovy jar explicitly listed on the classpath arguments of the java. </p>
<p>Since your clients do not have special environment variable, just replace the <code>%GROOVY_HOME%/...</code> with the complete path to:</p>
<ul>
<li>groovy.jar or</li>
<li><a href="http://groovy.codehaus.org/Ant+Task+Troubleshooting" rel="nofollow">goovy-all-VERSION.jar</a> (to minimize any conflict with other libraries)</li>
</ul>