This message was deleted.
# dependency-management
s
This message was deleted.
p
You need a 3rd build that produces a module that contains the shared code. Then you should be able to include it in both
build-logic
and your main build.
a
How do I address the module of the 3rd build?
implementation(project("some-module"))
doesn't work
p
Using coordinates, in the shared build you need to set
group
and then consume using something like
implementation("com.acme:shared")
❤️ 2
a
ah nice, didn't know it would work, thanks!