कई फ़ाइलों के लिए पीएमडी विश्लेषण

Aug 18 2020

कई फ़ाइलों के लिए pmd विश्लेषण कैसे चलाएं? यहाँ अगर मान लें कि कई .cls फाइलें हैं, तो मैं एक समय में कई फाइलों पर विश्लेषण कैसे चला सकता हूं?

pmd.bat -d "$(Build.SourcesDirectory)\code\src\apexcode.cls" -f xml -R "$(Build.SourceDirectory) \ code \ build \ MyApexRule.xml "-reportfile pm.pml"

जवाब

1 adangel Aug 19 2020 at 07:07

आप पूर्ण निर्देशिकाओं को भी निर्दिष्ट कर सकते हैं और पीएमडी "* .cls" एक्सटेंशन वाली किसी भी फाइल की खोज करेगा:

pmd.bat -d "$(Build.SourcesDirectory)\code\src" -f xml ^ -R "$(Build.SourcesDirectory)\code\build\MyApexRule.xml" ^
    -reportfile pmd.xml

यह सभी देखें https://pmd.github.io/latest/pmd_userdocs_cli_reference.html सीएलआई झंडे के पूर्ण प्रलेखन के लिए।