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
0
votes
1 answer

How to change the default artifactId of maven-metadata.xml when uploading to bintray

In my project I've set a custom artifactId for maven POM: install { repositories.mavenInstaller { pom { project { artifactId = moduleProperties.getProperty("module.artifactId") ... } …
Kai
  • 15,284
  • 6
  • 51
  • 82
0
votes
1 answer

Unable to access Jcenter artifacts Android Studio

I pushed an artifact file to Jcenter via Bintray. The artifact has been published as confirmed by searching the artifact on Jcenter repo. However I am unable to access that artifact in my apps via gradle. Here is the project repo link:…
user2498079
  • 2,872
  • 8
  • 32
  • 60
0
votes
2 answers

Way To Search for a Gradle Plugin

I am trying to convert an existing project from Eclipse to Android Studio I want to put as many of the dependancies as possible as Gradle Plugins pulled from the jcenter() or mavenCentral() repositories I am somewhat confused as how to search for…
Ryan Heitner
  • 13,119
  • 6
  • 77
  • 119
0
votes
1 answer

Android Studio can't find dependency

I pushed an .aar artifact to Jcenter repository through bintray and gradle. I followed this tutorial step by step, the only thing I did different was I didn't give the correct Github repository link because the git repository is private. Now I am…
user2498079
  • 2,872
  • 8
  • 32
  • 60
0
votes
1 answer

Upload eclipse project/library for use as a gradle dependency

I have a library that is being built in Eclipse, but I would like to upload it to jCenter to be used as a gradle dependency in an Android Studio project. I have tried building the gradle files in Eclipse, making a Bintray account, and trying to link…
vontell
  • 342
  • 3
  • 17
0
votes
1 answer

Just upload to Jcenter and can't import to gradle

I used Gradle plugin dev to upload my plugin to jCenter. But now I do not know how to use it in gradle. It fail finding the classpath. I build it like this: groupId:artifactId:version buildscript { repositories { jcenter() } …
Ilya Gazman
  • 31,250
  • 24
  • 137
  • 216
0
votes
1 answer

Importing RoundedImageView from Maven Central

I downloaded a project from github that didn't come with the necessary library for RoundedImageView the library the project was trying to find. I'm somewhat new to Android, and haven't had any experience using the build.gradle file which according…
AIntel
  • 1,087
  • 5
  • 14
  • 27
-1
votes
1 answer

Why does Dependabot try to authenticate to JCenter?

I have enabled Dependabot for a GitHub project of mine: https://github.com/t1/deployer For a while now, it opens issues that it could not authenticate to JCenter, e.g. https://github.com/t1/deployer/issues/163 I don't want to provide my credentials!…
rü-
  • 2,129
  • 17
  • 37
-1
votes
1 answer

JAR file is corrupted

Why do i get this error when i'm trying to include my version inside JCenter from the JFrog interface: JAR file is corrupted.A binary file (jar, aar, wat, apk) should be part of the package.Could not validate jar file.Package should include sources…
-1
votes
1 answer

Gradle fail to download Kotlin repository

I'm building Kotlin simple Hello-Worl using Gradle my build.gradle is: /* * This build file was generated by the Gradle 'init' task. * * This generated file contains a commented-out sample Java project to get you started. * For more details take…
Hasan A Yousef
  • 22,789
  • 24
  • 132
  • 203
-1
votes
1 answer

Android Studio 1.3 will not work with jcenter() Android Repository

Project build.gradle buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:1.2.3' // NOTE: Do not place your application dependencies here; they belong // in…
-5
votes
2 answers

how to add my github library on android studio

I have a library such as LibraryOne and it's package name is com.gorkem.libraryone and i pushed library to github. When i use this library on other project, i want to access this library with dependecies like that: compile 'com.gorkem.libraryone'…
1 2 3
24
25