Automatic indexing of jcenter in mvnrepository.com?

114 Views Asked by At

I recently added a new open source project to the JCenter repository through a bintray account. FYI, it's located here. I can confirm it is installable with this gradle file:

repositories {
  jcenter()
}

dependencies {
  implementation 'io.github.nicolas-van:eventemitter:0.0.6'
}

Now I would like this project to display on https://mvnrepository.com/ , because it's kind of the reference to search for Java libraries (well... the only one that works accross multiple maven repositories as far as I know). I'm assuming that the indexing is automatic and performed on cron (mostly because I can't find any form of documentation regarding that website, so I have to guess). Still, after two days it doesn't display.

Now for my questions:

  • Is the indexing on https://mvnrepository.com/ fully automatic or is there some obscure process to perform in order to see your project on it ?
  • If it's automatic what's the mean time before indexing new projects ? Days, weeks ? Also, what if a project is already indexed and you publish a new version ? Still many days to wait in order to just see the new version ?

Thanks in advance for any answer.

0

There are 0 best solutions below