I have existing java web application. Now I have written a groovy hello world class. How should I compile it with existing java class? From http://groovy.codehaus.org/ looks like I need a different compiler for this as command is groovy -e "println 'Hello ' + args[0]" World instead use javac.
I want to compile command from both command prompt and eclipse so that groovy class gets compiled with existing java classes.