Skip to content

Commit

Permalink
Disable jacocoReport for shaded projects
Browse files Browse the repository at this point in the history
Signed-off-by: Rishabh Maurya <[email protected]>
  • Loading branch information
rishabhmaurya committed Jan 27, 2025
1 parent 4464ba4 commit b22ff8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libs/arrow-memory-shaded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@ tasks.named('javadoc') { javadocTask ->
tasks.named("dependencyLicenses").configure {
mapping from: /jackson-.*/, to: 'jackson'
}

tasks.withType(JacocoReport).configureEach {
enabled = false
}
4 changes: 4 additions & 0 deletions libs/flight-core-shaded/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ tasks.named('javadoc') { javadocTask ->
enabled = false
finalizedBy(tasks.named('javadocDummyFiles'))
}

tasks.withType(JacocoReport).configureEach {
enabled = false
}

0 comments on commit b22ff8f

Please sign in to comment.