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.

link|improve this question
1  
Is it really that important? The problem is that a class could be required due to reflection, making dependency detection difficult. – Dave Newton Nov 3 '11 at 9:15
Are you already using Maven? Just going there for the dependency management is doable, but it's quite some work depending on your code base. Maven is not going to magically split JARs for you, though. – Philipp Reichart Nov 3 '11 at 9:20
1  
Also, if you tell what exactly libary "A" is, you'll probably get better/more specific answers. – Philipp Reichart Nov 3 '11 at 9:21
Firstly, this is not a good idea. as @DaveNewton has commented. Secondly, Maven is not the tool to do this. – Raghuram Nov 3 '11 at 11:15
@Philipp Reichart : I've Updated the Question. – Anish Nov 4 '11 at 7:00
show 2 more comments
feedback

1 Answer

From the documentation you need tika-core-1.0.jar and tika-parsers-1.0.jar. They total less than one meg. What is dependency entry for Tika?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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