I am unsure if this question is a valid stack overflow question as it is not about my code (and I'm unsure if this satisfies website rules).
For research purposes, I want to get the list of all
packages (include their metadata, if any) that are available on maven central. How can I do this?
I found this api guide - https://search.maven.org/classic/#api.
But it talks about a particular package named guice
(correct me if I'm wrong).
I also found this - https://repo1.maven.org/maven2/ link which seems to have a list of packages (or .jar
files).
Before this I have done my analysis on npm
repository and I found the list of all
packages easily on this like. I want something like that for maven central.
Can someone please help me?