File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/groovy/com/vanniktech/android/junit/jacoco Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,11 @@ class GenerationPlugin implements Plugin<Project> {
145
145
reports {
146
146
xml {
147
147
enabled = true
148
- destination " ${ subProject.buildDir} /reports/jacoco/${ sourceName} /jacoco.xml"
148
+ destination subProject . file( " ${ subProject.buildDir} /reports/jacoco/${ sourceName} /jacoco.xml" )
149
149
}
150
150
html {
151
151
enabled = true
152
- destination " ${ subProject.buildDir} /reports/jacoco/${ sourceName} "
152
+ destination subProject . file( " ${ subProject.buildDir} /reports/jacoco/${ sourceName} " )
153
153
}
154
154
}
155
155
@@ -234,11 +234,11 @@ class GenerationPlugin implements Plugin<Project> {
234
234
reports {
235
235
xml {
236
236
enabled = true
237
- destination " ${ project.buildDir} /reports/jacoco/jacoco.xml"
237
+ destination project . file( " ${ project.buildDir} /reports/jacoco/jacoco.xml" )
238
238
}
239
239
html {
240
240
enabled = true
241
- destination " ${ project.buildDir} /reports/jacoco"
241
+ destination project . file( " ${ project.buildDir} /reports/jacoco" )
242
242
}
243
243
}
244
244
You can’t perform that action at this time.
0 commit comments