evrencoskun / TableView

TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
MIT License
3.13k stars 453 forks source link

Migrate publishing to a new Repository #370

Open Zardozz opened 3 years ago

Zardozz commented 3 years ago

Migrate publishing to a new Repository as Bintray is closing down soon.

https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

I have mentioned this before, this is just item to keep track of the problem.

Describe the solution you'd like I would like to be able to get future releases of this library, no new package versions submission from March 31st 2021

I would like to be able to get the existing version past February 1st 2022

Additional context https://getstream.io/blog/publishing-libraries-to-mavencentral-2021/ is a good guide to publishing to Maven Central as an alternative (I've used it to publish my own package)

lupaulus commented 2 years ago

Use Jitpack implementation

  1. Check Jitpack use :

    allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }
  2. Add implementation in project build :

    implementation 'com.github.evrencoskun:TableView:v0.8.9.4'