Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 835 Bytes

bld.md

File metadata and controls

31 lines (24 loc) · 835 Bytes
title tags permalink last_updated
bld PMD Extension
userdocs
tools
pmd_userdocs_tools_bld.html
September 2023

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