0

I need to know ApplicationContext belongs to which JAR meanwhile its maven gav(I want it in some spring jar). Is there any generalized way of searching Jar to which a particular class belongs to. I find http://www.findjar.com can search the jar but not the maven gav, what about http://www.findmaven.net?

Ashot Karakhanyan
  • 2,804
  • 3
  • 23
  • 28

1 Answers1

1

You can use the AdvancedSearch on http://search.maven.org/

For a class name like ApplicationContext, you'll get many results, so you might want to limit your query by groupId. For example, you could search for: g:org.springframework c:ApplicationContext

Martin Ellis
  • 9,603
  • 42
  • 53