I want to simplify my execution of a Groovy script that makes calls to an Oracle database. How do I add the ojdbc jar to the default classpath so that I can run
groovy RunScript.groovy
instead of
groovy -cp ojdbc5.jar RunScript.groovy
|
|
|
|
|
|
|
Summarized from Groovy Recipes, by Scott Davis, Automatically Including JARs in the ./groovy/lib Directory:
It appears that for Groovy 1.5 or later you get this by default (no need to edit the conf), just drop the jars in the /lib dir. |
||
|
|
|
|
|
||
|
|
|
|
There are a few ways to do it. You can add the jar to your system's CLASSPATH variable. You can create a directory called .groovy/lib in your home directory and put the jar in there. It will be automatically added to your classpath at runtime. Or, you can do it in code. this.class.classLoader.rootLoader.addURL(new URL("file:///path to file")) |
||
|
|