Finding list of versions available in a Maven repository for a specific plugin?

java, maven-2, maven-metadata

Solution

Programatically or just manually?

Since the repository works over HTTP you can just navigate it manually:

http://repo2.maven.org/maven2/org/springframework/spring/ http://repo2.maven.org/maven2/org/hibernate/hibernate/ http://repo2.maven.org/maven2/org/hibernate/hibernate-core/

Problem

Given the following repository URL from my pom.xml how can I determine what the latest versions of spring and hibernate are available in the repository? http://repo1.maven.org/maven2

Original source