From cd811772e22fdb44a10c4a95ac2c20be4a9eab17 Mon Sep 17 00:00:00 2001 From: "Stephen M. Coakley" Date: Wed, 28 Apr 2021 11:31:10 -0500 Subject: [PATCH] Replace JCenter repo with Maven Central [Bintray and JCenter are now deprecated and becoming read-only](https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/), so it is not recommended to use it any more if possible. Replace usage of JCenter with Maven Central instead. --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 303d9d4..7ca2a2d 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ sourceCompatibility = 1.8 targetCompatibility = 1.8 repositories { - jcenter() + mavenCentral() } dependencies { @@ -42,4 +42,4 @@ pluginBundle { displayName = 'Widen Gradle versioning plugin' } } -} \ No newline at end of file +}