From b63a0101bc1764a34dd71019822e52c6ac9c3983 Mon Sep 17 00:00:00 2001 From: Philip Durbin Date: Tue, 15 Feb 2022 10:14:22 -0500 Subject: [PATCH] simplify wording #8394 --- doc/sphinx-guides/source/developers/dependencies.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx-guides/source/developers/dependencies.rst b/doc/sphinx-guides/source/developers/dependencies.rst index 2ba7de03c1a..e35a07949e1 100644 --- a/doc/sphinx-guides/source/developers/dependencies.rst +++ b/doc/sphinx-guides/source/developers/dependencies.rst @@ -244,7 +244,7 @@ Maven can manage versions of transitive dependencies in four ways: * - Safe Good Practice - (1) Explicitly declare the transitive dependency in ```` with a ```` tag. - (2) For more complex transitive dependencies, reuse a "Bill of Materials" (BOM) within ````. - Many bigger and standard use projects provide them, making the POM much less bloated compared to adding every bit yourself. + Many bigger projects provide them, making the POM much less bloated compared to adding every bit yourself. * - Better Avoid or Don't - (3) Use ```` or ```` tags on direct dependencies that request the transitive dependency. *Last resort*, you really should avoid this. Not explained or used here, but sometimes unavoidable.