Systemic33
Systemic33

Reputation: 35

Any website with a list of thirdparty java libraries?

I'm wondering if there is a website with like a list of java libraries/jars where you can browse around and see if theres something you could use. like when you make your own program which then contains lots of useful stuff.

Sort of like a website where people share their code, for public use.

Upvotes: 1

Views: 1760

Answers (2)

Konstantin Pribluda
Konstantin Pribluda

Reputation: 12367

http://mvnrepository.com - if you know jar name or package name. it will provide you available versions and pom/ivy/gradle coordinates for copy/paste.

http://findjar.com/ - helps you to find jar containing this f*%^ing class nobody knows about (and then you can search mvnrepository to look if it is available for maven build - if not, the best is just ignore this library as this is probably of low quality or not yet released to public properly)

Upvotes: 0

Related Questions