Join Slack
Powered by
What strategy do you all use to remove or handle d...
# community-support
t
Thailan Reis
12/30/2024, 9:16 PM
What strategy do you all use to remove or handle duplicate dependencies?
t
Thomas Broyer
12/31/2024, 6:19 PM
Use dependency constraints (
https://docs.gradle.org/current/userguide/dependency_constraints.html
), possibly through a platform (
https://docs.gradle.org/current/userguide/platforms.html
) in a multimodule project.
e
ephemient
01/01/2025, 5:43 AM
if you have a single ``java`` module only,
Copy code
java { consistentResolution { useCompileClasspathVersions()
may be enough
ephemient
01/01/2025, 5:45 AM
in my multi-module projects, I use version catalogs and platforms for centralized version management
7
Views
Open in Slack
Previous
Next