Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?
|
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:
|
||||
|
|
|
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 :
And you will instantly get a list of unused JARs in your dependencies. Very handy ! |
|||
|
|
You can use one of this plugins: UCDetector or Classpath Helper |
|||
|
|
|
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:
|
|||
|