vaadin - Getting all artifacts for a given group and version in Maven -
is possible list artifacts given group id , version in maven in web-site/link?
i trying vaadin dependencies using maven , have following details available:
<groupid>com.vaadin</groupid> <version>7.1.6</version>
i using
mvn dependency:copy-dependencies
command dependencies folder.
i aware have specify each dependency hand such as
vaadin-shared vaadin-server etc.
i want able list of these artifacts providing group id , version number above , generate individual dependency entries this:
<dependency> <groupid>com.vaadin</groupid> <artifactid>vaadin-shared</artifactid> <version>7.1.6</version> </dependency> <dependency> <groupid>com.vaadin</groupid> <artifactid>vaadin-server</artifactid> <version>7.1.6</version> </dependency>
i have checked answer here: how depend on artifacts group of version maven?
and looked @ maven entries here:
http://mvnrepository.com/artifact/com.vaadin
thanks.
========================================================
updated: 7 oct 2013
as mentioned robert below, central repository advanced search (http://search.maven.org/#advancedsearch|gav) helped me looking for. also, tried rest api (http://search.maven.org/#api) , works fine. step away writing sample java code fetch details using rest api , convert nice xml format can copy intended pom file :-)
the search page on maven central has advanced button, gives page can fill kinds of things, instance only groupid , version
there should rest-api this, have @ sonatype nexus documentation.
Comments
Post a Comment