AskiaDeveloper
AskiaDeveloper

Reputation: 11

Are there any repository explorer for Maven or Ivy that can be directly used from the console?

When creating a new project from scratch or even updating some projects, new dependencies need to be added. However sometimes one may not remember the exact name or spelling of those dependencies. So assuming one is not using the explorer from an IDE, is there a way to search or navigate the dependency repositories from the command line. This would be similar how would search application repositories in Ubuntu using aptitude search for example. Ideally I would like to also use this from sbt.

Upvotes: 1

Views: 444

Answers (1)

khmarbaise
khmarbaise

Reputation: 97409

You can use http://search.maven.org but this is of course no command line app (Web ;-()...but if you are working with Maven you should usually use at least an IDE...

Upvotes: 1

Related Questions