Skip to content

Commit

Permalink
chore: add jacoco test report
Browse files Browse the repository at this point in the history
  • Loading branch information
miurahr committed May 16, 2024
1 parent b27df7e commit b4b5484
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import com.github.spotbugs.snom.Confidence

plugins {
id 'java'
id 'jacoco'
id 'maven-publish'
id 'signing'
alias libs.plugins.spotbugs
Expand Down Expand Up @@ -114,3 +115,11 @@ spotless {
removeUnusedImports()
}
}

tasks.jacocoTestReport {
dependsOn(tasks.test)
group = 'verification'
reports {
html.required = true
}
}

0 comments on commit b4b5484

Please sign in to comment.