This commit is contained in:
Arseniy Borisov 2017-10-19 20:18:31 +03:00 committed by Gavriil
parent 43dfb3dd69
commit 9c10778fd5
1 changed files with 4 additions and 4 deletions

View File

@ -314,7 +314,7 @@ getCpdTask = { isAndroidProject, sources ->
reports {
xml {
enabled = true
destination = File("${project.buildDir}/reports/cpd.xml")
destination = file("${project.buildDir}/reports/cpd.xml")
}
}
}
@ -332,11 +332,11 @@ getPmdTask = { sources ->
reports {
html {
enabled = true
destination File("${project.buildDir}/reports/pmd.html")
destination file("${project.buildDir}/reports/pmd.html")
}
xml {
enabled = true
destination File("${project.buildDir}/reports/pmd.xml")
destination file("${project.buildDir}/reports/pmd.xml")
}
}
}
@ -386,7 +386,7 @@ getCheckstyleTask = { sources ->
reports {
xml {
enabled = true
destination File("${project.buildDir}/reports/checkstyle.xml")
destination file("${project.buildDir}/reports/checkstyle.xml")
}
}
}