Skip to content

Commit

Permalink
Fixing gradle file to support for codecov
Browse files Browse the repository at this point in the history
Signed-off-by: TrungBui59 <[email protected]>
  • Loading branch information
TrungBui59 committed Oct 31, 2023
1 parent 5c6e9c0 commit 8a5f43c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ lombok {

jacocoTestReport {
reports {
html.required = true
xml.required = true
xml.getRequired().set(true)
csv.getRequired().set(false)
html.getRequired().set(true)
}

dependsOn test
Expand Down
7 changes: 4 additions & 3 deletions memory/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@ test {

jacocoTestReport {
reports {
html.required = true
xml.required = true
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
xml.getRequired().set(true)
csv.getRequired().set(false)
html.getRequired().set(true)
}

dependsOn test
}


List<String> jacocoExclusions = []

jacocoTestCoverageVerification {
Expand Down

0 comments on commit 8a5f43c

Please sign in to comment.