Table of Contents
bld is a new build system that allows you to write your build logic in pure Java.
It has a PMD Extension for it.
To install, please refer to the extensions documentation.
To check all source code using the java quickstart rule, add the following to your build file
@BuildCommand
public void pmd() throws Exception {
new PmdOperation()
.fromProject(this)
.execute();
}
./bld pmd test
- Homepage: https://rife2.com/bld
- Documentation: https://github.com/rife2/bld/wiki
- PMD Extension: https://github.com/rife2/bld-pmd