Questions tagged [jcenter]

JCenter is a Maven repository that was used to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc. It is now deprecated and read-only.

JCenter was the place to find and share popular Apache Maven packages for use by Maven, Gradle, Ivy, SBT, etc. As of March 31st 2021, it will no longer be maintained by JFrog and has been set in read-only mode. Users of Gradle are warned about relying on its packages and asked to remove use of jcenter().

The official guidance from Android: Developers who publish artifacts on JCenter should migrate their packages to a new host, such as Maven Central. Developers who use dependencies from JCenter will need to find the new location of updated versions of those dependencies.

372 questions
4
votes
2 answers

Bintray web site down all day is it permanent issue?

I updated my Android studio to Artic Fox 2021.3.1 and in order to clean the project I cleaned the project and try to run again. Almost 10 hours the http://dl.bintray.com/populov/maven is down and Android studio is crashing. When I checked the site…
Olkunmustafa
  • 3,103
  • 9
  • 42
  • 55
4
votes
0 answers

Why removing jcenter() repository fails my Android Application build for sqlite-android:3.36.0

I've updated my Android Application gradle to use AGP 7.0 my gradle repositories resembles this repositories { google() mavenCentral() jcenter() } This shows that JCenter Maven repository is no longer receiving updates:…
Hector
  • 4,016
  • 21
  • 112
  • 211
4
votes
1 answer

Bintray, JCenter, Maven, MavenCentral, OSSRH, Sonatype, Nexus, how are they all related?

I have a library shared in JCenter, which I post to through Bintray. Recently, it is announced JCenter and Bintray are sunsetting, and many advised us to go to MavenCentral. I'm looking to move migrate it over. Then I notice within the Bintray, it…
Elye
  • 53,639
  • 54
  • 212
  • 474
4
votes
1 answer

The jCenter & Bintray is Shutting Down. Now What? How to resolve that If third party library used?

The jCenter & Bintray is Shutting Down. So how we can resolve this and what will do if third party libraries are used in project.? Please help me out. Thanks in advance.
4
votes
2 answers

Gradle issue when migrating from JCenter to mavenCentral repository

As you maybe already know, JFrog announced that Bintray, JCenter, GoCenter, and ChartCenter will go down at 1st May this year. Since JCenter is widely used for various dependencies as main repo in Android projects, alternative repo should be used,…
aherman
  • 900
  • 1
  • 8
  • 16
4
votes
1 answer

Could not GET 'https://jcenter.bintray.com/com/android/tools/build/gradle/4.0.0/gradle-4.0.0.pom'

i tried everything i could think of but i keep getting this error. this is my gradle build: buildscript { repositories { jcenter() maven{ url "https://dl.bintray.com/android/android-tools" } mavenCentral() } dependencies { …
4
votes
1 answer

No signature of method is applicable for argument types when trying to publish to JCenter with gradle

I'm trying to publish my project to JCenter with gradle. I'm getting this error: $ ./gradlew bintrayUpload FAILURE: Build failed with an exception. * Where: Build file '/Users/tomcaflisch/my-project/build.gradle' line: 32 * What went wrong: A…
Catfish
  • 18,876
  • 54
  • 209
  • 353
4
votes
1 answer

Disable jCenter repository in Gradle

In my Gradle project, I use a custom Maven repository to download the dependencies I need: buildscript { repositories { maven { url 'https://maven.my-company.com/' } } } allprojects { repositories { …
Gaëtan
  • 11,912
  • 7
  • 35
  • 45
4
votes
1 answer

How to access private Github package registry via Gradle

Can't access private GitHub package registry Checked info on "jcenter" how to make custom dependency, but there nothing about private dependency build.gradle: repositories{ jcenter(){ url "my_custom_package_githubRepository" } } dependencies{ …
Serhii Zadorozhnyi
  • 576
  • 2
  • 8
  • 25
4
votes
1 answer

Android Gradle Build tries to access JCenter even though I have not configured it anywhere

Our Android builds are running on our company's CI build agents. These don't have internet access and must fetch all their Maven dependencies from the virtual repositories in our Artifactory. I now noticed that all builds are taking a few minutes…
david.mihola
  • 12,062
  • 8
  • 49
  • 73
4
votes
1 answer

What is the difference between Files uploaded to bintray.com?

I uploaded my lib to bintray.com by the tutorial , and now there in tab "Files" exist the list of files. 1) Which one can I add directly to app/libs folder 2) What is the difference between Files uploaded to bintray.com? 3) How to find the files…
NickUnuchek
  • 11,794
  • 12
  • 98
  • 138
4
votes
1 answer

unable to bintrayUpload HTTP 404 Subject was not found

I'm facing this error for long time: Execution failed for task ':lib-change-scene:bintrayUpload'. Could not create package 'RajuSE/change-scene/change-scene': HTTP/1.1 404 Not Found [message:Subject 'R ajuSE' was not found] Sometimes this task…
AskQ
  • 4,215
  • 7
  • 34
  • 61
4
votes
1 answer

Bintray link to jcenter missing

I would like to ask about bintray link to jcenter. Apparently I can't link to jcenter anymore as the button 'linked to jcenter' is missing. I had created new package(under maven repository). I had no issues linking to jcenter when I was testing with…
johnnyhill
  • 85
  • 1
  • 1
  • 7
4
votes
2 answers

Android studio 2.2.2 publish my app module as library to jcenter with bintray repository

Here, I have done qr code scan project successfully. i have used for qrcodereaderview 1.0.0 v url repository library. this is my dependency. dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' …
4
votes
1 answer

Is there anyway to manually cache remote artifacts in Artifactory?

I am playing with a brand new OOS artifactory installation. I have a remote repository for jcenter. I am looking for a way to manually cache remote artifacts to jcenter-cach with artifactory web UI. I appreciate any help. Edit remote…
ambes
  • 5,272
  • 4
  • 26
  • 36