Updated dependencies

This commit is contained in:
Erik C. Thauvin 2023-06-26 16:41:19 -07:00
parent 29a4fb243a
commit 662b6b1b63
7 changed files with 61 additions and 27 deletions

View file

@ -46,7 +46,22 @@ public class PmdOperation extends AbstractOperation<PmdOperation> {
public static final String RULE_SET_DEFAULT = "rulesets/java/quickstart.xml";
private static final Logger LOGGER = Logger.getLogger(PmdOperation.class.getName());
private static final String PMD_DIR = "pmd";
/**
* The input paths (source) list.
*/
final List<Path> inputPaths = new ArrayList<>();
/**
* The relative roots paths.
*/
final List<Path> relativizeRoots = new ArrayList<>();
/**
* The rule priority.
*/
final RulePriority rulePriority = RulePriority.LOW;
/**
* The rule sets list.
*/
final List<String> ruleSets = new ArrayList<>();
/**
* The cache location.
*/
@ -75,10 +90,6 @@ public class PmdOperation extends AbstractOperation<PmdOperation> {
* The incremental analysis toggle.
*/
boolean incrementalAnalysis = true;
/**
* The input paths (source) list.
*/
List<Path> inputPaths = new ArrayList<>();
/**
* The input URI.
*/
@ -87,10 +98,6 @@ public class PmdOperation extends AbstractOperation<PmdOperation> {
* The default language version(s).
*/
List<LanguageVersion> languageVersions;
/**
* The relative roots paths.
*/
List<Path> relativizeRoots = new ArrayList<>();
/**
* The path to the report page.
*/
@ -99,14 +106,6 @@ public class PmdOperation extends AbstractOperation<PmdOperation> {
* The report format.
*/
String reportFormat = "text";
/**
* The rule priority.
*/
RulePriority rulePriority = RulePriority.LOW;
/**
* The rule sets list.
*/
List<String> ruleSets = new ArrayList<>();
/**
* The show suppressed flag.
*/