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
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
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
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 {