Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 31 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.
share|improve this answer
Thanks VonC, checking those out now. – RodeoClown Oct 29 '08 at 22:32

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 !

share|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

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

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

I know this is an old one, but if anyone else stumbles upon this, Eclipse does this by itself.

Navigate to Project properties->Java Code Style->Clean Up Select the Eclipse [Built-in] and it does the following:

  • Change non static accesses to static members using declaring type
  • Change indirect accesses to static members to direct accesses (accesses through subtypes)
  • Remove unused imports
  • Add missing '@Override' annotations
  • Add missing '@Override' annotations to implementations of interface methods
  • Add missing '@Deprecated' annotations
  • Remove unnecessary casts
  • Remove unnecessary '$NON-NLS$' tags
share|improve this answer
This isn't quite what I was asking. I was wanting to find which jars are included in the project that aren't necessary. Cleaning up does a different (but still useful) job. Cheers! – RodeoClown Feb 12 at 3:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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