Hi Russel,

The relevant fragment of the build.gradle is (I think):
>
>    try {
>      uploadArchives {
>        repositories.mavenDeployer {
>          uniqueVersion = false
>          configuration = configurations.deployJars
>          repository ( url : 'https://dav.codehaus.org/repository/gant' ) {
>            authentication ( userName : gant_repoUserName , password :
> gant_repoPassword )
>          }
>          snapshotRepository ( url : '
> https://dav.codehaus.org/snapshots.repository/gant' ) {
>            authentication ( userName: gant_repoUserName , password :
> gant_repoPassword )
>          }
>        }
>      }
>    }
>    catch ( Exception e ) {
>      //  If gant_repoUserName and/or gant_repoPassword are not defined, do
> nothing.
>    }
>
>
Have a look at the GPars build. You need to provide Maven-style urls, like:

repository(url: "dav:https://dav.codehaus.org/repository/gpars/";) {
    authentication(userName: gpars_repoUserName, password:
gpars_repoPassword)
}

Watch the dav: at the very beginning.

- Hans

--
Hans Dockter
Founder, Gradle
http://www.gradle.org, http://twitter.com/gradleorg
CEO, Gradle Inc. - Gradle Training, Support, Consulting
http://www.gradle.biz

Reply via email to