Rexxe wrote:
> 
> Whoops, here is the repo block:
> 
> repositories {
>        mavenCentral()
>        mavenLocal()
>        mavenRepo urls: ["http://maven.springframework.org/milestone";,
>                "http://repository.jboss.org/nexus/content/groups/public";,
>                "http://maven.springframework.org/release";]
>     }
> 

It's a common misconception that multiple Maven repositories can be added
this way. The correct syntax is:

repositories {
       mavenCentral()
       mavenLocal()
       mavenRepo urls: "http://maven.springframework.org/milestone";
       mavenRepo urls:
"http://repository.jboss.org/nexus/content/groups/public";
       mavenRepo urls: "http://maven.springframework.org/release";
}

Do you mind to file an issue at http://issues.gradle.org that describes this
trap?

--
Peter Niederwieser 
Developer, Gradle
http://www.gradle.org
Trainer & Consultant, Gradleware
http://www.gradleware.com
Creator, Spock Framework
http://spockframework.org


--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Having-a-tough-time-as-a-Gradle-novice-tp4302105p4302877.html
Sent from the gradle-user mailing list archive at Nabble.com.

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

    http://xircles.codehaus.org/manage_email


Reply via email to