PMD Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki
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 Java, JavaScript, Salesforce.com Apex and Visualforce, 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, Objective-C, Perl, PHP, PLSQL, Python, Ruby, Salesforce.com Apex, Scala, Swift and ...
Copy below PMD maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/net.sourceforge.pmd/pmd -->
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd</artifactId>
<version>6.20.0</version>
<type>pom</type>
</dependency>
Copy below PMD gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/net.sourceforge.pmd/pmd
compile group: 'net.sourceforge.pmd', name: 'pmd', version: '6.20.0', ext: 'pom'