Skip to content
This repository has been archived by the owner on Sep 4, 2021. It is now read-only.

Commit

Permalink
Exclude Configuration-Files from coverage report
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Kaserbacher <alexander.kaserbacher@tngtech.com>
  • Loading branch information
Alexander Kaserbacher committed Sep 5, 2018
1 parent 7a48263 commit aa9ddde
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jacocoTestReport {
reports {
xml.enabled = true
}

afterEvaluate {
classDirectories = files(classDirectories.files.collect {
fileTree(dir: it, exclude: [
'**/*Config*'
])
})
}
}

group 'com.tngtech.apicenter'
Expand Down

0 comments on commit aa9ddde

Please sign in to comment.