Getting Groovy's Grape Going!!! - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:12:35Z http://stackoverflow.com/feeds/question/192432 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192432/getting-groovys-grape-going 4 Getting Groovy's Grape Going!!! Bob Herrmann 2008-10-10T17:49:56Z 2009-10-27T06:06:39Z <p>I've tried to use the new <a href="http://groovy.codehaus.org/Grape" rel="nofollow">Groovy Grape</a> capability in Groovy 1.6-beta-2 but I get an error message;</p> <pre><code>unable to resolve class com.jidesoft.swing.JideSplitButton </code></pre> <p>from the Groovy Console (/opt/groovy/groovy-1.6-beta-2/bin/groovyConsole) when running the stock example;</p> <pre><code>import com.jidesoft.swing.JideSplitButton @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,)') public class TestClassAnnotation { public static String testMethod () { return JideSplitButton.class.name } } </code></pre> <p>I even tried running the grape command line tool to ensure the library is imported. Like this;</p> <pre><code> $ /opt/groovy/groovy-1.6-beta-2/bin/grape install com.jidesoft jide-oss </code></pre> <p>which does install the library just fine. How do I get the code to run/compile correctly from the groovyConsole?</p> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/194403#194403 2 Answer by shemnon for Getting Groovy's Grape Going!!! shemnon 2008-10-11T18:24:28Z 2008-10-11T18:24:28Z <p>There is still some kinks in working out the startup/kill switch routine. For Beta-2 do this in it's own script first:</p> <pre><code>groovy.grape.Grape.initGrape() </code></pre> <p>Another issue you will run into deals with the joys of using an unbounded upper range. Jide-oss from 2.3.0 onward has been compiling their code to Java 6 bytecodes, so you will need to either run the console in Java 6 (which is what you would want to do for Swing anyway) or set an upper limit on the ranges, like so</p> <pre><code>import com.jidesoft.swing.JideSplitButton @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)') public class TestClassAnnotation { public static String testMethod () { return JideSplitButton.class.name } } new TestClassAnnotation().testMethod() </code></pre> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/194439#194439 0 Answer by Bob Herrmann for Getting Groovy's Grape Going!!! Bob Herrmann 2008-10-11T18:50:34Z 2008-10-11T18:50:34Z <p>Ok. Seems like this a short working demo (running from the groovyConsole)</p> <pre><code>groovy.grape.Grape.initGrape() @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)') public class UsedToExposeAnnotationToComplier {} com.jidesoft.swing.JideSplitButton.class.name </code></pre> <p>When run it produces</p> <p>Result: "com.jidesoft.swing.JideSplitButton"</p> <p>Very cool!!</p> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/473172#473172 0 Answer by Paul King for Getting Groovy's Grape Going!!! Paul King 2009-01-23T14:58:47Z 2009-01-31T14:37:53Z <p>Different example using latest RC-2 (note: Grab annotates createEmptyInts):</p> <pre><code>// create and use a primitive array import org.apache.commons.collections.primitives.ArrayIntList @Grab(group='commons-primitives', module='commons-primitives', version='1.0') def createEmptyInts() { new ArrayIntList() } def ints = createEmptyInts() ints.add(0, 42) assert ints.size() == 1 assert ints.get(0) == 42 </code></pre> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/498908#498908 0 Answer by Paul King for Getting Groovy's Grape Going!!! Paul King 2009-01-31T14:33:11Z 2009-01-31T14:39:23Z <p>Another example (note: Grab annotates getHtml):</p> <pre><code>// find the PDF links in the Java 1.5.0 documentation @Grab(group='org.ccil.cowan.tagsoup', module='tagsoup', version='0.9.7') def getHtml() { def parser = new XmlParser(new org.ccil.cowan.tagsoup.Parser()) parser.parse("http://java.sun.com/j2se/1.5.0/download-pdf.html") } html.body.'**'.a.@href.grep(~/.*\.pdf/).each{ println it } </code></pre> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/498942#498942 0 Answer by Paul King for Getting Groovy's Grape Going!!! Paul King 2009-01-31T14:59:46Z 2009-01-31T14:59:46Z <p>Another example (note: <code>Grab</code> annotates <code>getFruit</code>):</p> <pre><code>// Google Collections example import com.google.common.collect.HashBiMap @Grab(group='com.google.code.google-collections', module='google-collect', version='snapshot-20080530') def getFruit() { [grape:'purple', lemon:'yellow', orange:'orange'] as HashBiMap } assert fruit.inverse().yellow == 'lemon' </code></pre> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/1628995#1628995 0 Answer by Jim Morris for Getting Groovy's Grape Going!!! Jim Morris 2009-10-27T06:06:39Z 2009-10-27T06:06:39Z <p>I finally got it working for Groovy Shell (1.6.5, JVM: 1.6.0_13). This should be documented better.</p> <p>First at the command line...</p> <blockquote> <p>grape install org.codehaus.groovy.modules.http-builder http-builder 0.5.0-RC2</p> </blockquote> <p>Then in groovysh...</p> <pre><code>groovy:000&gt; import groovy.grape.Grape groovy:000&gt; Grape.grab(group:'org.codehaus.groovy.modules.http-builder', module:'http-builder', version:'0.5.0-RC2') groovy:000&gt; def http= new groovyx.net.http.HTTPBuilder('http://rovio') ===&gt; groovyx.net.http.HTTPBuilder@91520 </code></pre> <p>The @grab is better used in a file than the shell.</p>