How do you configure GroovyConsole so I don't have to import libraries at startup? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:44:21Zhttp://stackoverflow.com/feeds/question/821327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/821327/how-do-you-configure-groovyconsole-so-i-dont-have-to-import-libraries-at-startup0How do you configure GroovyConsole so I don't have to import libraries at startup?fooMonster2009-05-04T18:37:22Z2009-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#8238610Answer by HaBaLeS for How do you configure GroovyConsole so I don't have to import libraries at startup?HaBaLeS2009-05-05T08:21:38Z2009-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>