Publish on MavenCentral
Hi,
JCenter will shut down on May 1st. Could you please publish this library on mavenCentral to remains usable in gradle?
https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/
Thanks
Hi!
sure, will do as soon as I have a few time :-) thanks for notifying!
I found this PR on the ReLinker repo, which shows the migration from jcenter to MavenCentral, so I put it here for reference, in case it helps with the migration. https://github.com/KeepSafe/ReLinker/pull/81
Hi again!
I've checked that the dependency is still available for download through jcenter(), so clients using the library won't be affected (yet) until February 2022. I'll start migrating it to MavenCentral in the meanwhile.
Thanks for the reminders! :slightly_smiling_face:
Hey @voghDev, Any news on this? Can I somehow help? Thanks
@voghDev this is may last dependency that is not on MavenCentral, can I somehow help on this? 🙂
Sure!
I haven't had time to start working on this. Do you know any reliable blog post or various blog posts where the process is described? so once I start with it, I have accurate information to read and get some background before performing the task. Thank you!
Hi,
Here are two blog posts that guide through the migration to Maven Central.
https://getstream.io/blog/publishing-libraries-to-mavencentral-2021/ https://proandroiddev.com/publishing-your-first-android-library-to-mavencentral-be2c51330b88
And in case you need it, here are more helping material.
https://www.marcogomiero.com/posts/2021/move-libray-jcenter-to-maven/ https://www.adyen.com/blog/migration-from-jcenter-to-maven-central https://blog.sonatype.com/what-publishers-need-to-know-about-migrating-from-jcenter-/-bintray-to-the-central-repository https://chris.banes.dev/publishing-to-maven-central/ https://jeroenmols.com/blog/2021/03/24/migrate-artifacts-mavencentral/
Hope it helps. Thanks
It seems this library published in JitPack.
I would prefer to have this library published on MavenCentral, since it's the default repo in Android Studio, and some teams may have restrictions that don't allow them to add libraries from jitpack.
@voghDev any news on this? This is my last dependency that is not available on MavenCentral, so it would be very nice to completely remove jcenter 🙂 thanks
Hi @4brunu ! I've been struggling with this for weeks, but haven't been able to publish the library. It is almost done, all the steps are completed, but the gradle script that executes the publishing is not recognizing Android classes and some annotations. That's what I need to solve to complete the publishing. Sorry for the delay!
Thanks for your work and thanks for the feedback 🙂
Hi @voghDev, do you have any news on this? 🙂 thanks
Hi @voghDev any news on this? really need this library on mavenCentral, thanks
Hello, you can use it with jitpack
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.voghDev:PdfViewPager:1.1.2'
}