Skip to content

Commit b5408b5

Browse files
committed
Move pmd cache file to build dir
1 parent 23138cd commit b5408b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/src/main/groovy/org/stoyicker/androidcheck/pmd/PmdCheck.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class PmdCheck extends CommonCheck {
2222
File configFile, File xmlReportFile) {
2323
PMDTask pmdTask = new PMDTask()
2424

25-
pmdTask.cacheLocation = new File(".pmdCache")
25+
pmdTask.cacheLocation = new File("./build/.pmd-cache")
2626
pmdTask.project = project.ant.antProject
2727
pmdTask.ruleSetFiles = configFile.toString()
2828
pmdTask.addFormatter(new Formatter(type: 'xml', toFile: xmlReportFile))

0 commit comments

Comments
 (0)