Repository: incubator-groovy Updated Branches: refs/heads/master 74bd43030 -> fb2d71406
Remove Codehaus specific configuration Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/fb2d7140 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/fb2d7140 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/fb2d7140 Branch: refs/heads/master Commit: fb2d714065b143104ed4e7d76fb5da37ce69936b Parents: 74bd430 Author: Cedric Champeau <cchamp...@apache.org> Authored: Fri May 15 10:07:49 2015 +0200 Committer: Cedric Champeau <cchamp...@apache.org> Committed: Fri May 15 10:08:05 2015 +0200 ---------------------------------------------------------------------- gradle/upload.gradle | 15 --------------- 1 file changed, 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/fb2d7140/gradle/upload.gradle ---------------------------------------------------------------------- diff --git a/gradle/upload.gradle b/gradle/upload.gradle index 03c9476..1a1e051 100644 --- a/gradle/upload.gradle +++ b/gradle/upload.gradle @@ -45,26 +45,11 @@ allprojects { deployerJars } - if (!isUsingBintray) { - dependencies { - deployerJars 'org.apache.maven.wagon:wagon-webdav:1.0-beta-2' - } - } - uploadArchives { repositories { mavenDeployer { configuration = configurations.deployerJars pom pomConfigureClosure - - if (!isUsingBintray) { - def credentials = [ - userName: System.getProperty('groovy.deploy.username'), - password: System.getProperty('groovy.deploy.password') - ] - repository(id:'codehaus.org',url: uri('dav:https://dav.codehaus.org/repository/groovy'), authentication: credentials) - snapshotRepository(id:'codehaus.org',url: uri('dav:https://dav.codehaus.org/snapshots.repository/groovy'), authentication: credentials) - } } } }