2021-08-20 16:45:55 +02:00
2021-08-20 16:31:43 +02:00
2019-03-03 12:04:55 +01:00
2021-08-20 16:34:21 +02:00
2021-08-20 16:34:21 +02:00
2020-04-17 16:13:34 +02:00
2021-08-20 16:34:21 +02:00
2021-07-15 10:43:38 +02:00
2019-09-07 16:09:33 +02:00
2020-01-16 18:07:25 +01:00
2020-01-16 18:07:25 +01:00
2019-09-07 16:09:33 +02:00
2021-08-20 16:34:21 +02:00

PMD - source code analyzer

Join the chat at https://gitter.im/pmd/pmd Build Status Maven Central Reproducible Builds Coverage Status Codacy Badge Contributor Covenant Documentation (latest)

PMD is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation, and so forth. It supports many languages. It can be extended with custom rules. It uses JavaCC and Antlr for parsing source into AST and runs rules against it to find violations. Rules can be written in Java or using a XPath query.

It supports Java, JavaScript, Salesforce.com Apex and Visualforce, Modelica, PLSQL, Apache Velocity, XML, XSL, Scala.

Additionally it includes CPD, the copy-paste-detector. CPD finds duplicated code in C/C++, C#, Dart, Fortran, Go, Groovy, Java, JavaScript, JSP, Kotlin, Lua, Matlab, Modelica, Objective-C, Perl, PHP, PLSQL, Python, Ruby, Salesforce.com Apex, Scala, Swift, Visualforce and XML.

In the future we hope to add support for data/control flow analysis and automatic (quick) fixes where it makes sense.

🚀 Installation and Usage

Download the latest binary zip from the releases and extract it somewhere.

Execute bin/run.sh pmd or bin\pmd.bat.

See also Getting Started

Demo:

For this sample file:

import java.util.List;

public class MyClass {
  void loop(List<String> l) {
    for (int i = 0; i < l.size(); i++) {
      System.out.println(l.get(i));
    }
  }
}

Run PMD on the command line:

$ run.sh pmd -d /usr/src -R rulesets/java/quickstart.xml -f xml
<?xml version="1.0" encoding="UTF-8"?>
<pmd xmlns="http://pmd.sourceforge.net/report/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pmd.sourceforge.net/report/2.0.0 http://pmd.sourceforge.net/report_2_0_0.xsd" version="6.37.0" timestamp="2021-08-20T15:26:35.564">
<file name="/home/andreas/temp/pmd-test/MyClass.java">
<violation beginline="3" endline="9" begincolumn="1" endcolumn="1" rule="NoPackage" ruleset="Code Style" class="MyClass" externalInfoUrl="https://pmd.github.io/pmd-6.37.0/pmd_rules_java_codestyle.html#nopackage" priority="3">
All classes, interfaces, enums and annotations must belong to a named package
</violation>
<violation beginline="5" endline="7" begincolumn="5" endcolumn="5" rule="ForLoopCanBeForeach" ruleset="Best Practices" class="MyClass" method="loop" externalInfoUrl="https://pmd.github.io/pmd-6.37.0/pmd_rules_java_bestpractices.html#forloopcanbeforeach" priority="3">
This for loop can be replaced by a foreach loop
</violation>
</file>
</pmd>

PMD Eclipse Plugin:

Screenshot PMD Eclipse Plugin

There are plugins for Maven and Gradle as well as for various IDEs. See Tools / Integrations

How to get support?

🤝 Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Our latest source of PMD can be found on GitHub. Fork us!

The rule designer is developed over at pmd/pmd-designer. Please see its README for developer documentation.

🪙 Financial Contributors

Become a financial contributor and help us sustain our community. Contribute

Contributors

Thanks goes to these wonderful people (emoji key):


Andreas Dangel

💻 📖

Clément Fournier

💻 📖

Juan Martín Sotuyo Dodero

💻 📖

sergeygorbaty

💻

sturton

💻

Robert Sösemann

💻 📖 📢

Maikel Steneker

💻

gwilymatgearset

💻

Akshat Bahety

💻

Joseph

💻

David Renz

💻

Pelisse Romain

💻 📖

Mykhailo Palahuta

💻

Gonzalo Exequiel Ibars Ingman

💻

BBG

💻 📖

XenoAmess

💻

Denis Borovikov

💻

Jeff Hube

💻

piotrszymanski-sc

💻

Kris Scheibe

💻

Jonathan Wiesel

💻

Shubham

💻

Jan Aertgeerts

💻

Olivier Parent

💻

Jeff Bartolotta

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

📝 License

BSD Style

Languages
Java 75.5%
Apex 9.7%
Kotlin 9.1%
ANTLR 2.7%
PLSQL 1%
Other 1.8%