I have an external library (say A.jar) which has loads and loads of stuff that I don't want, and a few that I want. The problem is, from my source Files (That I have written using that library, imports only a few of them), but surely including only those classes wont work( coz I tried). I don't know about internal dependency (if that's what it is called) of the class files inside (a very big) A.jar.
Problem What tool I use to, say, import only those classes which are required (along with the dependencies That I don't know), into a different folder(or another Jar File). Is Maven the right tool, and if so, how do I use it to achieving my goal?
The Library is the Apache-Tika Library. And I have Imported the following in my code.
import org.apache.tika.exception.TikaException;
import org.apache.tika.metadata.Metadata;
import org.apache.tika.parser.AutoDetectParser;
import org.apache.tika.sax.BodyContentHandler;
I need to analyze doc, docx, pdf, odf, ppt, pptx, xls, xlsx, rtf, txt document. So, I need to know the minimal Library for this.