Table of Contents
💡 Overview
PMD is a static source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation, and so forth. It’s mainly concerned with Java and Apex, but supports 16 other languages.
PMD features many built-in checks (in PMD lingo, rules), which are documented for each language in our Rule references. We also support an extensive API to write your own rules, which you can do either in Java or as a self-contained XPath query.
PMD is most useful when integrated into your build process. It can then be used as a quality gate, to enforce a coding standard for your codebase. Among other things, PMD can be run:
- As a Maven goal
- As an Ant task
- As a Gradle task
- As a bld operation
- From command-line
CPD, the copy-paste detector, is also distributed with PMD. You can also use it in a variety of ways, which are documented here.
💾 Download
The latest release of PMD can be downloaded from our Github releases page.
The Logo is available from the Logo Project Page.
📖 Documentation
The rest of this page exposes the contents of the documentation site thematically, which you can further scope down using the blue filter buttons. To navigate the site, you may also use the search bar in the top right, or the sidebar on the left.
✨ Contributors
This project follows the all-contributors specification. Contributions of any kind welcome!
See credits for the complete list.
These pages summarize the gist of PMD usage to get you started quickly.
Pick your language to find out about the rule it supports.
These pages document the process of writing and testing custom rules and metrics for PMD.
Learn how to build effective and versatile rulesets.
If you'd like to help us build PMD, these topics may interest you. See you around!
These pages describe solutions that integrate PMD within your build process.