show/hide this revision's text 3 deleted 121 characters in body; edited title

Getting groovy's grape going.Groovy's Grape Going!!!

I've tried to use the new Groovy Grape(http://groovy.codehaus.org/Grape) capability in Groovy 1.6-beta-2 but I get an error message;

Exception thrown: org.codehaus.groovy.control.MultipleCompilationErrorsException
startup failed, Script0: 1: 

unable to resolve class com.jidesoft.swing.JideSplitButton

from the Groovy Console (/opt/groovy/groovy-1.6-beta-2/bin/groovyConsole) when running the stock example;

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
    }
}

I even tried running the grape command line tool to ensure the library is imported. Like this;

 $ /opt/groovy/groovy-1.6-beta-2/bin/grape install com.jidesoft jide-oss

which does install the library just fine. How do I get the code to run/compile correctly from the groovyConsole?

show/hide this revision's text 2 added 49 characters in body

I've tried to use the new Groovy Grape (http://groovy.codehaus.org/Grape) capability in Groovy 1.6-beta-2 but I get an error message;

Exception thrown: org.codehaus.groovy.control.MultipleCompilationErrorsException
startup failed, Script0: 1: unable to resolve class com.jidesoft.swing.JideSplitButton

from the Groovy Console (/opt/groovy/groovy-1.6-beta-2/bin/groovyConsole) when running the stock example;

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
    }
}

I even tried running the grape command line tool to ensure the library is imported. Like this;

 $ /opt/groovy/groovy-1.6-beta-2/bin/grape install com.jidesoft jide-oss

which does install the library just fine. How do I get the code to run/compile correctly?

show/hide this revision's text 1

Getting groovy's grape going.

I've tried to use the new Groovy Grape (http://groovy.codehaus.org/Grape) capability in Groovy 1.6-beta-2 but I get an error message;

Exception thrown: org.codehaus.groovy.control.MultipleCompilationErrorsException
startup failed, Script0: 1: unable to resolve class com.jidesoft.swing.JideSplitButton

from the Groovy Console (/opt/groovy/groovy-1.6-beta-2/bin/groovyConsole) when running the stock example;

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
    }
}

I even tried running the grape command line tool to ensure the library is imported. Like this;

 $ /opt/groovy/groovy-1.6-beta-2/bin/grape install com.jidesoft jide-oss

which does install the library just fine.