Replies: 1 comment
-
For me, Bazel notation looks more logical, cause even on Gradle, :project notation, underhood, is directories too. For example, let to see on Gradle projects dir project(":feature-login").projectDir = file("feature/login"). Thats why, will be great to choose unified notation for project/modules/target. But on other hand, make this behavior on Gradle Wrapper side means, that we will forced to always support this forked version too) |
Beta Was this translation helpful? Give feedback.
-
Gradle notation for referencing the projects is pretty unusual and creates some confusion:
Bazel notation on the other hand is more straight forward and match with folder structure
Unfortunately, by default, there is no way to teach Gradle new project notations, but we can fork Gradle Wrapper so it can support Bazel notations and translate them to Gradle's.
Beta Was this translation helpful? Give feedback.
All reactions