Pixplicity / sharp

Scalable vector graphics for Android
Apache License 2.0
1.03k stars 117 forks source link

Moving from JCenter to MavenCentral #61

Closed lebzuch closed 2 years ago

lebzuch commented 3 years ago

Hey! Any plans to migrate to MavenCentral as JCenter will be sunset on May 1st, 2021?

Useful hints on the migration process can be found here.

Thanks!

lebzuch commented 3 years ago

Hey! I saw that there was a commit for moving from bintray to mavencentral https://github.com/Pixplicity/sharp/commit/fcb4c01f8aa7ab5634cde48528a29ce3533a418d but my IDE shows that there is no version 1.1.3 available: Could not resolve com.pixplicity.sharp:library:1.1.3@aar When I can expect this release?

Best, Krzysiek

ghost commented 3 years ago

i experienced the same thing, @lebzuch

I hope it will be available in maven soon

AnonymousWalker commented 3 years ago

also same for me, waiting for it published to maven repo

MarkCupitt commented 3 years ago

Also cannot find it, mavenCentral still points to JCenter

Could not GET 'http://dl.bintray.com/pixplicity/android/com/pixplicity/sharp/library/1.0.2/library-1.0.2.pom'. Received status code 403 from server: Forbidden
milkrun commented 2 years ago

Just wondering out loud: Can we put this in MavenCentral ourselves?

jcamarena-sh commented 2 years ago

Also same for me, tried to download from mavenCentral() but not get the repo. Is there any version available on mavenCentral? Thanks in advance

yersonrr commented 2 years ago

Hi, I was looking for the package in MavenCentral. Is it possible to publish it?

mlagerberg commented 2 years ago

Hi all, the most recent version should now be available on mavenCentral:

<dependency>
  <groupId>com.pixplicity.sharp</groupId>
  <artifactId>sharp</artifactId>
  <version>1.1.3</version>
  <type>aar</type>
</dependency>
milkrun commented 2 years ago

When I use this, I get "failed to resolve"

implementation 'com.pixplicity.sharp:library:1.1.3@aar'
milkrun commented 2 years ago

Nevermind, here is the correct incantation -- the README needs to be updated

implementation "com.pixplicity.sharp:sharp:1.1.3@aar"
jcamarena-sh commented 2 years ago

It works to me! Thanks @mlagerberg