Skip to content

Commit

Permalink
Disable jacoco temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
pivovarit committed Oct 13, 2024
1 parent 779a868 commit 79fdc14
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,6 @@ dependencies {
testImplementation "com.fasterxml.jackson.module:jackson-module-scala_2.11:${fasterxmlVersion}"
}

tasks.register('codeCoverageReport', JacocoReport) {
executionData.setFrom(fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec"))

sourceSets(sourceSets.main.get())

reports {
xml.required.set(true)
xml.outputLocation.set(file("${buildDir}/reports/jacoco/report.xml"))
html.required.set(true)
csv.required.set(false)
}
}

tasks.named('codeCoverageReport') {
dependsOn(tasks.named('test'))
}

jar {
manifest {
attributes(
Expand Down

0 comments on commit 79fdc14

Please sign in to comment.