From f7ba94c16ca8f9126f1a01f5b99f8d3fc78795d0 Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Mon, 16 Aug 2021 18:02:04 -0400 Subject: [PATCH] Remove jcenter / bintray from gradle (#651) * Remove jcenter / bintray from gradle Our build was referencing the old bintray repositories. This would 403 and make the build much slower as at retried 5 times against the broken URL. * Update CHANGELOG.md Co-authored-by: John DiSanti Co-authored-by: John DiSanti --- CHANGELOG.md | 1 + build.gradle.kts | 2 -- settings.gradle.kts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08cb9b426..48db5f900 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ vNext (Month Day, Year) - :bug: Fix name collision that occurred when a model had both a union and a structure named `Result` (#643) - Add initial implementation of a default provider chain. (#650) - Update smithy-client to simplify creating HTTP/HTTPS connectors (#650) +- Remove Bintray/JCenter source from gradle build. (#651) v0.20 (August 10th, 2021) -------------------------- diff --git a/build.gradle.kts b/build.gradle.kts index 12669b2c3..9281d42c1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,6 @@ buildscript { repositories { google() - jcenter() } val kotlinVersion: String by project @@ -23,7 +22,6 @@ allprojects { repositories { mavenLocal() mavenCentral() - jcenter() google() } } diff --git a/settings.gradle.kts b/settings.gradle.kts index 65a084618..487597014 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -5,7 +5,6 @@ pluginManagement { repositories { - maven("https://dl.bintray.com/kotlin/kotlin-eap") mavenCentral() maven("https://plugins.gradle.org/m2/") google() -- GitLab