Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 24 down vote accepted

ClassPathHelper is a good start.

It automatically identifies orphan jars any much more.

The only limit are dependencies that are not defined in classes, e.g. in dependency injection framework configuration files.

You have also other options/complements, such as:

  • workingfrog which relies on the ability to deal with real objects by examining their shape, size or relative place in space it gives a "physical" view on java packages, types and fields and their relationships, making them easier to handle.
  • Unnecessary Code Detector: a eclipse PlugIn tool to find unnecessary (dead) public java code.
link|improve this answer
Thanks VonC, checking those out now. – RodeoClown Oct 29 '08 at 22:32
feedback

UCDetector does not help for this : It does not work on JARs. And for classpathHelper, I wan't able to find out an easy way just to list the orphan JARs (BTW, if someone has a tutorial for this, i am interested).

So, if you are also using Maven as I do, I find out this great Maven plugin, and I would like to share this solution with you. Just type :

mvn dependency:analyze

And you will instantly get a list of unused JARs in your dependencies. Very handy !

link|improve this answer
Thanks a lot for the tip of mvn dependency:analyze. It does the job in a very easy way. In my opinion, much simpler than using one of the other tools mentioned. – Jesper Rønn-Jensen Nov 13 '11 at 19:21
feedback

You can use one of this plugins: UCDetector or Classpath Helper

link|improve this answer
Thanks for those - looking into them now. – RodeoClown Oct 29 '08 at 22:27
feedback

Your Answer

 
or
required, but never shown

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