This message was deleted.
# dependency-management
s
This message was deleted.
v
The main question is, why do you want to, or what do you actually want to achieve?
i
Well, I have very similar services that use some bundle of third party dependencies, let's say
libs.bundles.webservice
. Each of them also uses the same subproject as a dependency. So I was thinking about a way to remove duplication like
Copy code
implementation(project(:api))
implementation(libs.bundles.webservice)
v
I'm still not sure what you want to remove. Just the duplicated lines in the build script? Then write a convention plugin that adds those dependencies and apply it.
i
Yep, exactly that 🙂 My services share the same API module unfortunately, so I'd like to simplify creation of new services as much as possible. Thanks, I'll try to create a convention plugin
👌 1