...
The Maven PMD plugin doesn’t support printing the XML into the logs. Instead print the generated target/pmd.xml
file into the build log by a follow up final task:
Code Block |
---|
#!/bin/bash cat ./target/pmd.xml || echo "No PMD analytics generated" |
...
The Gradle PMD plugin doesn’t support printing the XML into the logs. Instead print the generated ./build/reports/pmd/main.xml
file into the build log by a follow up final task:
Code Block |
---|
#!/bin/bash cat ./build/reports/pmd/main.xml || echo "No PMD analytics generated" |
...
Typically the build system tool generate a PMD report xml, and you can dump that to the console by a final task. For example:
Code Block |
---|
#!/bin/bash cat ./a-build-dir/pmd.xml || echo "No PMD analytics generated" |
...