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
Tags: userdocs tools