Re: [gradle-user] Bug in resolving configurations from multiple maven repositories

2010-03-30 Thread Hans Dockter
Have a look at the Javadoc of the mavenCentral(Map args) method. That explains the behavior: http://gradle.org/0.9-preview-1/docs/javadoc/org/gradle/api/artifacts/dsl/RepositoryHandler.html#mavenCentral%28java.util.Map%29 - Hans -- Hans Dockter Founder, Gradle http://www.gradle.org, http://twitt

Re: [gradle-user] Bug in resolving configurations from multiple maven repositories

2010-03-29 Thread Rene Groeschke
Hi Levi, thanks. that did the trick. regards, René Am Mo, 29.03.2010, 10:24, schrieb Levi Hoogenberg: > I remember a thread on the list that discussed this (it was Russel, I > think). The conclusion was (again, IIRC) that the name urls was not the > best choice, since you're declaring a single

Re: [gradle-user] Bug in resolving configurations from multiple maven repositories

2010-03-29 Thread Levi Hoogenberg
I remember a thread on the list that discussed this (it was Russel, I think). The conclusion was (again, IIRC) that the name urls was not the best choice, since you're declaring a single repository. Have you tried repositories { mavenRepo urls: 'http://testserver:15000/artifactory/nbs-snapshot

[gradle-user] Bug in resolving configurations from multiple maven repositories

2010-03-29 Thread Rene Groeschke
Hi there, I've detected a strange behaviour in my build script. I declared multiple maven repositories: repositories{ mavenRepo urls:["http://testserver:15000/artifactory/nbs-snapshots";, "http://testserver:15000/artifactory/sdk-snapshots";]; } and some dependencies: dependencies {