9
votes

Apologies for the newbie question, but how do you install HTTPBuilder for Groovy?

I've added the http-builder-0.7.jar, http-builder-0.7-source.jar, and http-builder-0.7-javadoc.jar to GROOVY_HOME/lib.

Is there anything else I need to do? The HTTPBuilder website isn't clear.

Code run from GroovyConsole:

import groovy.grape.Grape

Grape.grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' )

def http = new groovyx.net.http.HTTPBuilder('http://www.codehaus.org')

I get this in response:

groovy.lang.MissingMethodException: No signature of method: static groovy.grape.Grape.grab() is applicable for argument types: (java.lang.String, java.lang.String, java.lang.String) values: [org.codehaus.groovy.modules.http-builder, http-builder, 0.7]
Possible solutions: grab(java.lang.String), grep(), grab(java.util.Map), grab(java.util.Map, [Ljava.util.Map;), wait(), dump()

EDIT 2:

 @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' )

 def http = new groovyx.net.http.HTTPBuilder('http://www.codehaus.org')

Response:

java.lang.NoClassDefFoundError: org/apache/http/client/methods/HttpRequestBase

at ConsoleScript6.run(ConsoleScript6:4)

Caused by: java.lang.ClassNotFoundException: org.apache.http.client.methods.HttpRequestBase

... 1 more
1
Don't copy it to the lib folder. It makes anything you do almost impossible to reproduce. Why not use a proper build tool like gradle, and use the builder as a dependency? Or use a grab annotation to fetch it if you're just writing a script - tim_yates
@tim_yates I removed them from the lib folder. I've been trying to use Grape from GroovyConsole. I'll edit to show you what I did. I attempted to run Grape.bat on my machine but it just closes out. - James.Wyst
Have you tried getting rid of your import and replacing the grab line with @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' ) - tim_yates
Or (even shorter) @Grab('org.codehaus.groovy.modules.http-builder:http-builder:0.7') - tim_yates
@tim_yates I get another exception thrown. I'm editing the post to show you. - James.Wyst

1 Answers

6
votes

The following example works for me out of the box:

@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' )

def http = new groovyx.net.http.HTTPBuilder('http://www.codehaus.org')
println http

You need to remove any of the dependency jars you added directly to GROOVY_HOME\lib. Manually adding the jars there could create conflicts and cause these types of errors. Check to see if you have manually added the HttpClient libraries to the lib, remove them as well and try again.

EDIT: When using IntelliJ, I have been able to reproduce this behavior once. I already had a single @Grab annotation added to my Groovy script. When I added a second, it didn't seem to download or import the new library.

First of all, if you add a second @Grab, you need to wrap it in the @Grapes annotation like the following (my first mistake):

@Grapes([
        @Grab(group='org.codehaus.gpars', module='gpars', version='1.2.1'),
        @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.1')
])

After that, I found my solution here: Intellij IDEA not importing dependencies from @Grab in Groovy project, which explains than when using IntelliJ and you encounter this issue, try placing your cursor next to the @Grapes annotation and selecting Alt+Enter then choose the 'Grab the Artifacts' option.