0

I'm working on a project that (until now) did not use dependency-manager (now Gradle)

I try to resolve the dependencies and add them to the build.gradle. Now I found a class, where I can't find the corresponding package

org.apache.tools.tar.TarEntry

Now, given the information from above, how can I find a packe that contains that class?

Edward
  • 4,453
  • 8
  • 44
  • 82

1 Answers1

1

Maven central has an advanced search form here. You can specify a Classname you are lookin for and it'll show you all the jar with such a class. Here is the output for your org.apache.tools.tar.TarEntry class.

Stanislav
  • 27,441
  • 9
  • 87
  • 82
  • Is there a way to exclude non-exact matches like `hudson.org.apache.tools.tar.TarEntry`? Is there a way to sort by last modification date? – Edward Sep 15 '16 at 14:11