> I've come across this bug:
>
>  http://jira.codehaus.org/browse/GRADLE-810
>
> It exhibits when the Gradle cache is clean and I suspect it has
> something to do with the java.net repository. Anyway, there is a test
> project attached to the issue. If someone has an opportunity to take a
> look, that would be great. It's almost a blocker for the Grails
> plugin.

This was a mistake on my part. I had:

  buildscript {
      repositories {
          mavenCentral()
          mavenRepo urls: [
'http://snapshots.repository.codehaus.org',
'http://download.java.net/maven/2/' ]
      }

      dependencies {
          classpath "org.grails:grails-gradle-plugin:1.0-SNAPSHOT"
      }
  }

I misunderstood the mavenRepo() syntax. Changing it to:

          mavenRepo urls: 'http://snapshots.repository.codehaus.org'
          mavenRepo urls: 'http://download.java.net/maven/2/'

fixed the problem. However, it took a lot of debugging to find out
what the problem was, so how about some sort of error or warning
message?

Cheers,

Peter

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to