查找 Maven 存储库中特定插件的可用版本列表?
2022-09-02 09:48:47
给定我的pom的以下存储库URL.xml我如何确定存储库中有哪些最新版本的spring和hibernate可用?http://repo1.maven.org/maven2
给定我的pom的以下存储库URL.xml我如何确定存储库中有哪些最新版本的spring和hibernate可用?http://repo1.maven.org/maven2
检索放置在工件目录中的文件,例如,https://repo1.maven.org/maven2/com/sun/media/jai_codec/maven-metadata.xml 具有 groupId 和 artifactId 的工件。maven-metadata.xml
com.sun.media
jai_codec
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>com.example</groupId>
<artifactId>project</artifactId>
<versioning>
<latest>0.0.5</latest>
<release>0.0.5</release>
<versions>
<version>0.0.3</version>
<version>0.0.4</version>
<version>0.0.5</version>
</versions>
<lastUpdated>20090725212606</lastUpdated>
</versioning>
</metadata>