Skip to content

Commit 9c471a2

Browse files
committed
Merge pull request vanniktech#14 from cgcgbcbc/master
exclude file whose name contains $$, fix vanniktech#13
2 parents 021a7a2 + 556df2c commit 9c471a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/groovy/com/vanniktech/android/junit/jacoco/Generation.groovy

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ class Generation implements Plugin<Project> {
3333
dir: 'build/intermediates/classes/debug',
3434
excludes: [
3535
'**/R*.class',
36-
'**/BuildConfig*'
36+
'**/BuildConfig*',
37+
'**/*$$*'
3738
]
3839
)
3940

0 commit comments

Comments
 (0)