java - How can I figure out which of the 200 linked JARs, my Eclispe project actually needs? -
i working in old java eclipse project has lot of jars linked it's build path.
i have noticed several of them aren't being used project more, meaning old libraries has been forgotten when code has evolved on years.
a standard way determine if library used, remove , see if there compilation errors.
however, have noticed libraries in build path invoked reflection, meaning if remove library won't compilation errors. project crash due not finding code anymore. problem don't know when can happen.
is there tool can use figure out of linked jar libraries can safely remove, without getting compilation or reflection errors?
check classpathhelper.
Comments
Post a Comment