We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23138cd commit b5408b5Copy full SHA for b5408b5
plugin/src/main/groovy/org/stoyicker/androidcheck/pmd/PmdCheck.groovy
@@ -22,7 +22,7 @@ class PmdCheck extends CommonCheck {
22
File configFile, File xmlReportFile) {
23
PMDTask pmdTask = new PMDTask()
24
25
- pmdTask.cacheLocation = new File(".pmdCache")
+ pmdTask.cacheLocation = new File("./build/.pmd-cache")
26
pmdTask.project = project.ant.antProject
27
pmdTask.ruleSetFiles = configFile.toString()
28
pmdTask.addFormatter(new Formatter(type: 'xml', toFile: xmlReportFile))
0 commit comments