Posts Tagged - maven

Maven

Checkstyle

To check all the errors in checkstyle and where they’re located:

  1. go to the project’s folder where the error triggers
  2. open target/checkstyle-result.xml
  3. search for ="error"
  4. there the classes’ name and the error line # can be seen

PMD

To find where the error is located. Search for the String priority="1". If nothing is found, search for prio 2, 3…

Read More