is not current version
Last Version 4.3

pmd:pmd 3.9

<p>PMD scans Java source code and looks for potential problems like:</p> <ul> <li>Possible bugs - empty try/catch/finally/switch statements</li> <li>Dead code - unused local variables, parameters and private methods</li> <li>Suboptimal code - wasteful String/StringBuffer usage</li> <li>Overcomplicated expressions - unnecessary if statements, for loops that could be while loops</li> <li>Duplicate code - copied/pasted code means copied/pasted bugs</li> </ul> <p>You can <b><a href="http://sourceforge.net/project/showfiles.php?group_id=56262">download everything from here</a></b>, and you can get an overview of all the rules at the <a href="rules/index.html">rulesets index</a> page.</p> <p>PMD is <a href="integrations.html">integrated</a> with JDeveloper, Eclipse, JEdit, JBuilder, BlueJ, CodeGuide, NetBeans/Sun Java Studio Enterprise/Creator, IntelliJ IDEA, TextPad, Maven, Ant, Gel, JCreator, and Emacs.</p> <p>Welcome <a href="http://bluej.org/">BlueJ</a> users! Notes on installing the PMD extension for BlueJ are <a href="integrations.html#bluej">here</a>.</p>

Categories

Categories

PMD Application Testing & Monitoring Code Analysis
GroupId

GroupId

pmd
ArtifactId

ArtifactId

pmd
Version

Version

3.9
Type

Type

jar

Download pmd 3.9

Filename Size
pmd-3.9.pom
pmd-3.9.jar 903 KB
pmd-3.9-sources.jar 490 KB
Browse

<!-- https://jarcasting.com/artifacts/pmd/pmd/ -->
<dependency>
    <groupId>pmd</groupId>
    <artifactId>pmd</artifactId>
    <version>3.9</version>
</dependency>
// https://jarcasting.com/artifacts/pmd/pmd/
implementation 'pmd:pmd:3.9'
// https://jarcasting.com/artifacts/pmd/pmd/
implementation ("pmd:pmd:3.9")
'pmd:pmd:jar:3.9'
<dependency org="pmd" name="pmd" rev="3.9">
  <artifact name="pmd" type="jar" />
</dependency>
@Grapes(
@Grab(group='pmd', module='pmd', version='3.9')
)
libraryDependencies += "pmd" % "pmd" % "3.9"
[pmd "3.9"]