Skip to content

Commit

Permalink
Fix coverage task
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Feb 10, 2024
1 parent 24d3f0e commit 4581cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ tasks.register('coverage', JacocoReport) {

// Add all source as input
allprojects { p ->
if (p.path.startsWith(":deprecated")) {
if (p.path.startsWith(":deprecated") || metaProjects.contains(p.name)) {
return
}
sourceSets p.sourceSets.main, p.sourceSets.client, p.sourceSets.testmod, p.sourceSets.testmodClient
Expand Down

0 comments on commit 4581cdb

Please sign in to comment.