TableView icon indicating copy to clipboard operation
TableView copied to clipboard

Migrate publishing to a new Repository

Open Zardozz opened this issue 4 years ago • 1 comments

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)

Zardozz avatar Mar 23 '21 22:03 Zardozz

Use Jitpack implementation

  1. Check Jitpack use :
	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
  1. Add implementation in project build :
implementation 'com.github.evrencoskun:TableView:v0.8.9.4'

lupaulus avatar Aug 17 '21 20:08 lupaulus