In Eclipse, how to search for a class in maven managed dependencies?

class, dependencies, eclipse, jar, maven

Solution

I assume you are using m2e plugin (and using it correctly)

Ctrl-Shift-T works for classes in JARs under library of your Eclipse project. By using M2E plugin, dependencies of Maven is showed as a library.

Please verify if you see "Maven Dependencies" as one of the libraries under your project. If not, probably you are either incorrectly importing the project, or the POM is having problem.

Problem

Possible Duplicate: find pom dependencies by classname When all my dependencies are managed by maven in eclipse, then how do I use something like Ctrl+ Shift+ T to search for a dependency?

Original source

Related problems