Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to put a jar in mvnrepository.com?

Tags:

maven-2

I created a small open source Java library LinkSet and I'd like to put it into mvnrepository.com.

How to do it? There is nothing like "upload/log in/sign in" link on this website :(

like image 945
Łukasz Bownik Avatar asked Feb 17 '10 07:02

Łukasz Bownik


2 Answers

Guide to uploading artifacts to the Central Repository

like image 66
Tim Avatar answered Dec 06 '22 18:12

Tim


As far as I know, mvnrepository is only linked to the Maven 2 central repository. This mean that it automatically retrieve new or updated libraries that are present in this repository.

In others words, your library must be present in the official repository to be listed in mvnrepository site.

Edit: The Tim answer will help you to find the procedure dedicated to the upload of your library in the central repository.

like image 26
Romain Linsolas Avatar answered Dec 06 '22 18:12

Romain Linsolas