vote up 4 vote down star
2

How can I found the dependency by classname?

In particular, I want to include this class org.mortbay.jetty.testing.ServletTester in my project, how do I do that? And how did you find the answer?

flag

+1 I'm looking for good answers also ! – KLE Sep 3 at 8:36

4 Answers

vote up 1 vote down check

since version 6.1, Netbeans can add to pom.xml the dependency you need for a given class

link|flag
good... todo: have a closer look at netbeans. however, I was looking for a more general answer. – flybywire Sep 3 at 8:27
check also for maven indexing, eg repo1.maven.org/maven2/.index – dfa Sep 3 at 9:26
vote up 1 vote down

Nexus allows you to search for artifacts by class name as well as GroupId, ArtifactId, and Version. Nexus uses Lucene to index artifacts. The Sonatype public repository allows you to search the major repositories.

Enter org.mortbay.jetty.testing.ServletTester in the search field and hit the search icon. You'll get no results because by default Nexus searches for keywords. To refine the search to match class names, select the down arrow next to the Keyword Search label on the search page and select Classname search (see screenshot). You'll then find a list of matching artifacts.

search screenshot

Nexus also has Opensearch integration, so you can add the search to your Firefox / IE 7 search field. See the Nexus book for more details on setting this up.

open search integration

There's also a video with more details on the search options available.

link|flag
is there any way to use this approach to search non-Nexus public repositories? – talk to frank Sep 8 at 18:19
it works on any public repository that has a nexus index (most do). If you have your own Nexus server, you can set up a proxy repository for the public repo, then search that repo using its index – Rich Seller Sep 8 at 18:23
vote up 0 vote down

I found a way to do it, almost: search by package name in google:

Using this query: "org.mortbay.jetty.testing" site:mvnrepository.com

link|flag
vote up 0 vote down

Use http://www.jarvana.com/ or use Intellij IDEA

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.