HttpBuilder in grails script

444 Views Asked by At

I have a problem with the HttpBuilder and grails. If I try to use it in a grails script it doesn't work...how can I import it in a script?
I tried with Grape but it is too slow....is there an alternative?

2

There are 2 best solutions below

0
On

Maybe you could use the Grails Rest plugin. It enables the use of HttpBuilder in a Grails project: http://grails.org/plugin/rest

2
On

Specify http-builder dependency in BuildConfig.groovy:

dependencies {
   runtime "org.codehaus.groovy.modules.http-builder:http-builder:0.5.2"
 }