Tagged Questions
7
votes
6answers
7k views
Getting Groovy's Grape Going!
I've tried to use the new Groovy Grape capability in Groovy 1.6-beta-2 but I get an error message;
unable to resolve class com.jidesoft.swing.JideSplitButton
from the Groovy Console ...
4
votes
2answers
481 views
grape doesn't work in Eclipse
groovy eclipse plugin version: 1.7.5.xx-20101020-1000-e36-release.
import com.jidesoft.swing.JideSplitButton
@Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)')
public class ...
2
votes
1answer
316 views
Groovy 1.8 @Grab fails unless I manually call grape resolve
When running a script that is using grape system to @Grab a dependency in the ibiblio repo, it fails till I manually call grape resolve from the command line. After that, it's in the local cache and ...
2
votes
2answers
341 views
Disable automatic download for Groovy grapes
A sample script ss.groovy:
@Grab(group='org.codehaus.groovy.modules.http-builder',
module='http-builder',
version='0.5.0')
import groovyx.net.http.HTTPBuilder
println('done')
for ...
1
vote
1answer
59 views
Groovy Grape in high volume applications
I have seen examples of Groovy Grape being used for scripts to perform FTPs and other basic scripting tasks. Is anyone using Groovy Grape in applications that execute a high volume of transactions? ...
1
vote
1answer
207 views
groovy grape verbose
Is there a way to print Ivy output when using Groovy Grape.
when I use Grape, it's just hanging there till finishes downloading all dependencies. I would like to know what it's happening and what ...
1
vote
1answer
1k views
Groovy with Grape and AntBuilder classloader problem
I wanted to use groovy for a little ftp script and found this post http://www.hhhhq.org/blog/2009/05/01/ftp-using-groovy-and-ant/
Since there were several dependencies I wanted to use Grape. All ...
0
votes
1answer
108 views
How to use Grape with Oracle driver?
In my groovy script, I have this code :
@Grapes([
@Grab(group='com.oracle', module='ojdbc14', version='10.2.0.3.0')
])
When I run the script, I receive an error message :
...
0
votes
1answer
154 views
Groovy isn't able to load a library installed with Grape
Can someone explain why Groovy isn't able to find a JDBC driver even if I've already installed the dependency using Grape?
$ grape --version
Groovy Version: 1.7.7 JVM: 1.6.0_20
$ grape install ...
0
votes
1answer
357 views
How to set a custom Maven repository manager in Grape
I would like to use grape to install a library by command-line. So I've issued the command:
grape -V install org.apache.derby derby 10.5.3.0
Grape should use the Maven repository located at ...
0
votes
2answers
246 views
How to get groovy grape script startup going faster
I've noticed there is like a 10 second hit using a groovy script with Grape annotations on my OSX box. Is it always this way? Can I make grape favor its cache (the depedencies are definitely already ...
0
votes
1answer
785 views
Groovy servlet can't find JAR files in Tomcat
I've created a groovlet that will act as a sort of HTTP proxy. It accepts GET requests and then makes web service calls based on the URL provided in the request.
Here's the code I've got so far:
...
0
votes
1answer
563 views
Groovy + Antbuilder: How to use Grape to with taskdef?
This is related to . I'm trying to dynamically add the maven-ant-tasks jars with Grape, simulating this:
<taskdef uri="antlib:org.apache.maven.artifact.ant"
...