pmd codecheck to find same set of classes in multiple jars
A source code analyzer
Brought to you by:
adangel,
juansotuyo
Hi everyone ,
i'm new to pmd , i just want to know whether pmd has any predefined ruleset for detecting same set of classes in multiple jars. Any help is appreciated
PMD checks source code, not binary jars. We use jars for type resolution,
but the same way the JRE does (first match on classpath), so we don't check
nor know of duplicates.
Unless you are looking for conflicting classes defined in different
sourcesets of the same project, PMD is not suited to detect these
scenarios. If that IS your case however, there is no current rule to do
so, but can easily be written in Java.
Regards
On Thu, Jul 26, 2018 at 10:38 AM Logesh logesh@users.sourceforge.net
wrote:
Thanks a lot Juan Sotuyo