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

Publish kotlin library (Not Android) to jCenter

I have Intellij Idea 2016.1 gradle-application(Not Android) written in Kotlin. I need to place it in jCenter and add to the Android-application as a dependency. I can not find any information about it. All references refer to the Android project. I…
4
votes
1 answer

Moving package between own repositories on bintray

My organization has several maven repositories on bintray. Most of these repositories contain a single package of the same name as the repository. These packages seem highly related and I would like to reorganize them by creating a single repository…
Ilya
  • 21,871
  • 8
  • 73
  • 92
4
votes
3 answers

How to change groupid if project is already uploaded to bintray and synced with jcenter?

I've recently uploaded my github project to bintray and successfully synced it with JCenter repository. I used this tutorial: http://inthecheesefactory.com/blog/how-to-upload-library-to-jcenter-maven-central-as-dependency/en So my gradle dependency…
Danylo Volokh
  • 4,149
  • 2
  • 33
  • 40
4
votes
2 answers

Using Jcenter with gradle in Android studio

Edit: Figured it out, I implemented JBaruch's suggestion to the allprojects->repositories section of the project-wide build.gradle file. I am writing a project that depends upon IOIO. Compiling IOIO's libs on my project is giving me trouble. I have…
errolflynn
  • 641
  • 2
  • 11
  • 24
4
votes
1 answer

Setup Maven Repository on private server to share the android library for Android Studio

I have a Gitlab server for Version Control System. I have developed an android library and want to share the android library in a gradle way i.e. compile "com.mycompanyname.libraryname:version. I need a guidance on how to set up the repository on my…
rishm.msc
  • 361
  • 5
  • 16
4
votes
0 answers

Grails 2.3.6 plugin can't find jcenter?

I have a Grails 2.3.6 plugin with the following BuildConfig: grails.project.dependency.resolution = { // inherit Grails' default dependencies inherits("global") { // uncomment to disable ehcache // excludes 'ehcache' } …
DirtyMikeAndTheBoys
  • 1,077
  • 3
  • 15
  • 29
3
votes
1 answer

Gradle 'publishToMavenLocal' task not found. Please add the 'maven-publish' or 'maven' plugin

I got an error when I deployed my library on jitpack eoor are below. and I have use Project full error is here ---> Build starting... Start: Fri May 27 13:31:41 UTC 2022 67cf7f81daef Git: edb3881 commit…
Laxmi kant
  • 128
  • 1
  • 11
3
votes
3 answers

Getting Error when using Android YouTube Video Player 'com.pierfrancescosoffritti.androidyoutubeplayer:core:10.0.5' after removing JCenter()

This is the error while building the gradle. [![Execution failed for task ':app:checkDebugAarMetadata'. > Could not resolve all files for configuration ':app:debugRuntimeClasspath'. > Could not find…
3
votes
0 answers

Unable to get firebase-ui-auth from mavenCentral when I build an app with ./gradlew lintDebug

I'm trying to change a source of an android app's libraries from JCenter to MavenCentral, because the JCenter will be closed. I've checked that firebase-ui-auth v7.1.1 and v7.2.0 are in MavenCentral, but when I build the app with ./gradlew…
3
votes
1 answer

After 1st May, what are we'll do with jcenter() repository and what is it alternative?

We are recently notified by they permanently suspension: https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ How we'll proceed with Android building runners? I use Flutter and i don't know which repository I'll transfer…
3
votes
1 answer

Closed source project migration from jcenter to maven central

Since JCenter is shutting down on 1 May 2021. What are other options to publish a closed source library?. I have searched online but have not been able to get any reliable and recent information on this. What are the options available for my…
3
votes
1 answer

Error 403 Forbidden : Impossible to access to jcenter

From this morning, gradle build failed due to error when accessing to jcenter : Could not resolve all artifacts for configuration ':app:debugCompileClasspath'. Could not resolve org.koin:koin-android:2.2.1. Required by: project :app > Could not…
Guillaume P
  • 371
  • 2
  • 8
3
votes
0 answers

Could not build android project due to jcenter repository Bad gateway : 502 from server

Could not GET 'https://jcenter.bintray.com/com/android/support/support-v4/maven-metadata.xml'. Received status code 502 from server: Bad Gateway Enable Gradle 'offline mode' and sync project
3
votes
2 answers

How to sync maven artifact from jcenter to maven central?

I have an artifact (jar) that is deployed to bintray and is available on jcenter. I would also like this artifact to be available on maven central. The instructions available from bintray (located here:…
Phil Adams
  • 97
  • 9
3
votes
0 answers

Bintray new version is not synced to JCenter

A few months ago, I uploaded version 2.0 of my JARs to Bintray, and they were approved to JCenter. All worked great. Two days ago, I uploaded version 2.1 of my JARs to Bintray, and only 25 of the 84 JARs have been published to JCenter.…