views:

83

answers:

1

Using Grails 1.2.0 and the latest Spock 0.4-SNAPSHOT (as of 01/28/2010 10:18 EST) I'm getting compilation errors that the Groovy compiler is unable to find:

org.apache.commons.httpclient.Cookie
and
org.apache.commons.httpclient.NameValuePair

No matter what I've tried (adding it as a dep in the plugin, adding it as a dep in the app) it returns the exact same error. This happens in the console using, specifically, grails test-app.

I've also tried deleting the .grails directory, the .ivy2 directory and even my .m2 directory to clean out the dependencies in case that is the problem.

A: 

The jars are actually HTML files in my repository because of this Maven bug: http://jira.codehaus.org/browse/MNG-4428

JR Boyens