Re: Garb'ing libraries in jenkins script console

2016-04-22 Thread Guy Matz
Right! So what do I do!? :-( On Fri, Apr 22, 2016 at 9:49 AM, Andrew Bayer wrote: > fwiw, @Grab won't work from the Jenkins script console. > > A. > > On Fri, Apr 22, 2016 at 3:48 PM, Robert Stagner > wrote: > >> I believe this is what you want >> >> @Grab(group='org.codehaus.groovy.modules.ht

Re: Garb'ing libraries in jenkins script console

2016-04-22 Thread Andrew Bayer
fwiw, @Grab won't work from the Jenkins script console. A. On Fri, Apr 22, 2016 at 3:48 PM, Robert Stagner wrote: > I believe this is what you want > > @Grab(group='org.codehaus.groovy.modules.http-builder', > module='http-builder', version='0.7.1') > > version = 0.7.1 > > I do not think there

Re: Garb'ing libraries in jenkins script console

2016-04-22 Thread Robert Stagner
I believe this is what you want @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.1') version = 0.7.1 I do not think there is a 0.7.2 version On Fri, Apr 22, 2016 at 6:46 AM Guy Matz wrote: > Sorry. Wrong mailing list > > On Fri, Apr 22, 2016 at 9:45

Re: Garb'ing libraries in jenkins script console

2016-04-22 Thread Guy Matz
Sorry. Wrong mailing list On Fri, Apr 22, 2016 at 9:45 AM, Guy Matz wrote: > Anyone know how to get this - or an equivalent - to work in jenkins script > console? > > @Grab(group='org.codehaus.groovy.modules.http-builder', > module='http-builder', version='0.7.2') > import groovyx.net.http.* >

Garb'ing libraries in jenkins script console

2016-04-22 Thread Guy Matz
Anyone know how to get this - or an equivalent - to work in jenkins script console? @Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7.2') import groovyx.net.http.* Thanks!