How do you configure GroovyConsole so I don't have to import libraries at startup? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T07:44:21Z http://stackoverflow.com/feeds/question/821327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/821327/how-do-you-configure-groovyconsole-so-i-dont-have-to-import-libraries-at-startup 0 How do you configure GroovyConsole so I don't have to import libraries at startup? fooMonster 2009-05-04T18:37:22Z 2009-12-10T21:00:03Z <p>I have a groovy script that uses a third party library. Each time I open the application and attempt to run my script I have to import the proper library. </p> <p>I would like to be able to open GroovyConsole and run my application without having to import the library.</p> http://stackoverflow.com/questions/821327/how-do-you-configure-groovyconsole-so-i-dont-have-to-import-libraries-at-startup/823861#823861 0 Answer by HaBaLeS for How do you configure GroovyConsole so I don't have to import libraries at startup? HaBaLeS 2009-05-05T08:21:38Z 2009-05-05T08:21:38Z <p>At least on Linux groovy GroovyConsole is a Script has the Following command:</p> <pre><code>startGroovy groovy.ui.Console "$@" </code></pre> <p>startGroovy itself is a script which starts Java. Within the startGroovy script you should be able to modify your classpath and add the missing librarys.</p> <p>From startGroovy:</p> <pre><code>startGroovy ( ) { CLASS=$1 shift # Start the Profiler or the JVM if $useprofiler ; then runProfiler else exec "$JAVACMD" $JAVA_OPTS \ -classpath "$STARTER_CLASSPATH" \ -Dscript.name="$SCRIPT_PATH" \ -Dprogram.name="$PROGNAME" \ -Dgroovy.starter.conf="$GROOVY_CONF" \ -Dgroovy.home="$GROOVY_HOME" \ -Dtools.jar="$TOOLS_JAR" \ $STARTER_MAIN_CLASS \ --main $CLASS \ --conf "$GROOVY_CONF" \ --classpath "$CP" \ "$@" fi </code></pre>