hot questions tagged grape - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T17:51:03Zhttp://stackoverflow.com/feeds/tag?tagnames=grape&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1641116/groovy-with-grape-and-antbuilder-classloader-problem0Groovy with Grape and AntBuilder classloader problemdamokles2009-10-29T01:15:07Z2009-10-29T11:07:56Z
<p>I wanted to use groovy for a little ftp script and found this post <a href="http://www.hhhhq.org/blog/2009/05/01/ftp-using-groovy-and-ant/" rel="nofollow">http://www.hhhhq.org/blog/2009/05/01/ftp-using-groovy-and-ant/</a>
Since there were several dependencies I wanted to use Grape. All dependencies are resolved and present in the cache. But I can't get Ant to find the optional tasks in the other libs.
It always says</p>
<pre><code>Caught: : Problem: failed to create task or type ftp
Cause: the class org.apache.tools.ant.taskdefs.optional.net.FTP was not found.
This looks like one of Ant's optional components.
Action: Check that the appropriate optional JAR exists in
-ANT_HOME\lib
-the IDE Ant configuration dialogs
Do not panic, this is a common problem.
The commonest cause is a missing JAR.
This is not a bug; it is a configuration problem
at GrabTest.runMe(GrabTest.groovy:15)
at GrabTest.run(GrabTest.groovy:26)
</code></pre>
<p>Groovy Version: 1.6.5 JVM: 1.6.0_15</p>
<p>Here is my source code</p>
<pre><code>@Grab(group='ant', module='ant', version='[1.6.5,)')
@Grab(group='ant', module='ant-nodeps', version='[1.0,)')
@Grab(group='ant', module='ant-apache-oro', version='[1.0,)')
@Grab(group='ant', module='ant-commons-net', version='[1.0,)')
@Grab(group='apache-oro', module='jakarta-oro', version='[2.0.8,)')
@Grab(group='commons-net', module='commons-net', version='[1.4,)')
def runMe() {
// works
println getClass().getClassLoader().loadClass("org.apache.tools.ant.taskdefs.optional.net.FTP")
def ant = new AntBuilder()
println getClass().getClassLoader() //groovy.lang.GroovyClassLoader$InnerLoader
println ant.getClass().getClassLoader() //org.codehaus.groovy.tools.RootLoader
ant.ftp( server:"ftp.foo.com",
userid:"user",
password:"passwd",
passive:"yes",
verbose:"yes",
remotedir:"/pub/incoming",
binary:"yes" ) {
fileset( dir:"." ) { include( name:"**/*.gz" ) }
}
}
runMe()
</code></pre>
<p>As you can see I suspect the classloader of being the problem, it seems that
Grape doesn't inject the dependencies there.
Any idea of how I can get it to work?</p>
http://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>