Skip to content

Commit

Permalink
Fixed "No signature of method: org.gradle.api.internal.file.Composite…
Browse files Browse the repository at this point in the history
…FileCollection$1.setFrom()" bug for mergeJacocoReports task. (#157)



Co-authored-by: Deepika Varada <[email protected]>
  • Loading branch information
2 people authored and vanniktech committed May 7, 2019
1 parent 4d0b2d7 commit 6ac414d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ class GenerationPlugin implements Plugin<Project> {

doFirst {
// Filter non existing files.
def realExecutionData = project.files().asFileTree
def realExecutionData = project.files()

executionData.each {
if (it.exists()) {
Expand Down

0 comments on commit 6ac414d

Please sign in to comment.