m

maven-pmd-plugin

The Maven PMD plugin is a plugin that wraps the PMD framework (http://pmd.sourceforge.net). PMD is a source checking framework that works by scanning Java source code and looks for potential problems like: unused local variables, empty catch blocks, unused parameters, empty 'if' statements, etc.
http://maven.apache.org/maven-1.x/plugins/pmd/
Apache Software Foundation
dIon Gillard Siegfried Goeschl Martin Poeschl Vincent Massol Carlos Sanchez Arnaud Heritier
Files download
File Operation
maven-pmd-plugin-1.9.jar download
maven-pmd-plugin-1.9.pom download
maven-pmd-plugin-1.9-sources.jar download
Apache Maven
<dependency>
  <groupId>maven</groupId>
  <artifactId>maven-pmd-plugin</artifactId>
  <version>1.9</version>
</dependency>
Gradle Groovy
implementation 'maven:maven-pmd-plugin:1.9'
Gradle Kotlin
implementation("maven:maven-pmd-plugin:1.9")
Scala SBT
libraryDependencies += "maven" % "maven-pmd-plugin" % "1.9"
Groovy Grape
@Grapes(
  @Grab(group='maven', module='maven-pmd-plugin', version='1.9')
)
Apache Ivy
<dependency org="maven" name="maven-pmd-plugin" rev="1.9" />
Leiningen
[maven/maven-pmd-plugin "1.9"]
Apache Buildr
'maven:maven-pmd-plugin:jar:1.9'