Skip to content

Commit

Permalink
Add modules-assert-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
biplab1 committed Jan 9, 2025
1 parent ab682ae commit a6b0576
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,14 @@ plugins {
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.wire) apply false
alias(libs.plugins.ktorfit) apply false
}

// Task to print all the module paths in the project e.g. :core:data
// Used by module graph generator script
tasks.register("printModulePaths") {
subprojects {
if (subprojects.size == 0) {
println(this.path)
}
}
}

0 comments on commit a6b0576

Please sign in to comment.