This message was deleted.
# dependency-management
s
This message was deleted.
v
What do you mean with that? Do you have an example of what you mean?
a
Yes. Afaik, right now you can use version catalogs for library dependencies but not for module dependencies. You gotta reference them by name at the moment like
implementation(project("module-name))
. Are there plans for defining these in modules in version catalogs?
v
I don't think so, it is neither a dependency of the build, nor does it have a version. And more importantly you can already let Gradle generated accessors for them. It is just an experimental feature you have to enable on your settings script right now.
n
@Adam you are probably looking for type-safe project accessors. 😉
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
🙌 1
a
Sweet, thanks!!