vote up 2 vote down star
1

I have a groovy script that needs a library in a jar. How do I add that to the classpath? I want the script to be executable so I'm using #!/usr/bin/env groovy at the top of my script.

flag

Looks like this was already asked: stackoverflow.com/questions/254385/… – timdisney Nov 20 '08 at 17:45

4 Answers

vote up 4 vote down check

Are none of the options listed at http://groovy.codehaus.org/Running working for you?

Give them a try if you haven't.

If you really have to you can also load a JAR at runtime with:

this.getClass().classLoader.rootLoader.addURL(new File("file.jar").toURL())
link|flag
Heh, definitely missed the "Adding things to the classpath" section first time I read that. – timdisney Nov 20 '08 at 17:43
vote up 1 vote down

You can add the jars to $HOME/.groovy/lib

link|flag
vote up 0 vote down

The same as you would in Java.

This is an example of running a MySQL status monitoring script. mysql.jar contains the MySQL connector that I call from script status.groovy.

groovy -cp mysql.jar status.groovy ct1

link|flag
vote up 0 vote down

You can also try out Groovy Grape. It lets you use annotations to modify the classpath. Its experimental right now, but pretty cool. See http://groovy.codehaus.org/Grape

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.