We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b454031 commit 84e07faCopy full SHA for 84e07fa
settings.gradle.kts
@@ -28,6 +28,11 @@ dependencyResolutionManagement {
28
29
gradle.lifecycle.beforeProject {
30
group = when {
31
+ // The root "misk" project isn't a code-containing project (it's not a module). It doesn't need
32
+ // a group, and in fact giving it a group confuses gradle when we `includeBuild("misk")`
33
+ // elsewhere, because doing that makes `misk/` and `misk/misk/` _identical_ in GA
34
+ // (group-artifact) terms.
35
+ path == ":" -> ""
36
path.startsWith(":wisp") -> "app.cash.wisp"
37
else -> "com.squareup.misk"
38
}
0 commit comments