Getting Groovy's Grape Going!!! - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T01:21:36Zhttp://stackoverflow.com/feeds/question/192432http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192432/getting-groovys-grape-going4Getting Groovy's Grape Going!!!Bob Herrmann2008-10-10T17:49:56Z2009-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#1944032Answer by shemnon for Getting Groovy's Grape Going!!!shemnon2008-10-11T18:24:28Z2008-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#1944390Answer by Bob Herrmann for Getting Groovy's Grape Going!!!Bob Herrmann2008-10-11T18:50:34Z2008-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#4731720Answer by Paul King for Getting Groovy's Grape Going!!!Paul King2009-01-23T14:58:47Z2009-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#4989080Answer by Paul King for Getting Groovy's Grape Going!!!Paul King2009-01-31T14:33:11Z2009-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#4989420Answer by Paul King for Getting Groovy's Grape Going!!!Paul King2009-01-31T14:59:46Z2009-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#16289950Answer by Jim Morris for Getting Groovy's Grape Going!!!Jim Morris2009-10-27T06:06:39Z2009-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> import groovy.grape.Grape
groovy:000> Grape.grab(group:'org.codehaus.groovy.modules.http-builder', module:'http-builder', version:'0.5.0-RC2')
groovy:000> def http= new groovyx.net.http.HTTPBuilder('http://rovio')
===> groovyx.net.http.HTTPBuilder@91520
</code></pre>
<p>The @grab is better used in a file than the shell.</p>