typo (#29)
This commit is contained in:
parent
43dfb3dd69
commit
9c10778fd5
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue