From 680d2313cd9479823efa89a2d71c768c4faa26cc Mon Sep 17 00:00:00 2001 From: "Stephan Guilloux (cos)" Date: Mon, 31 Oct 2022 10:56:11 +0100 Subject: [PATCH] Problem: JCENTER/BINTRAY no more available for Android repositories Solution: Remove JCENTER() call, from Android repository search path. See - ZPROJECT [issue 1314](https://github.com/zeromq/zproject/pull/1314) for more details. - ZPROJECT [issue 1315](https://github.com/zeromq/zproject/pull/1315) for more questions. --- bindings/jni/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bindings/jni/build.gradle b/bindings/jni/build.gradle index c2b597ee..d145a3e4 100644 --- a/bindings/jni/build.gradle +++ b/bindings/jni/build.gradle @@ -28,7 +28,11 @@ subprojects { repositories { mavenLocal() mavenCentral() - jcenter() + // BINTRAY no more responding. + // JFROG announced JCENTER & BINTRAY shutdown in 2021. + // - What to do for the JFROG plugin ? + // - Is the README still valid ? + /* jcenter() */ } group = 'org.zeromq.zyre'