Alexander Kondaurov
Alexander Kondaurov

Reputation: 4123

Why sync bintray with maven central?

I'm building few projects and publish them to bintray. After that i can add resolver that points to my repository and use any library in that repo.

So what is the point to sync your package with maven central?

i see these reasons:

  1. my package will be available in mvnrepository search. I can see usages of my package in other libraries
  2. maven central is default resolver, so i don't need add any other resolvers in sbt

Are there any other reasons? Thanks!

Upvotes: 0

Views: 164

Answers (1)

AAryan
AAryan

Reputation: 20140

From bintray blog :

Maven Central is “hardwired” into the super-popular Maven 2. As such, it is being used by many Maven users of course, but also by Ivy, and even by Gradle users (those not familiar with Bintray’s ‘jcenter()’ repo yet).

So you need to deploy your artifact into Maven Central, but it is somehow painful so Sync is better option.

Upvotes: 3

Related Questions