This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch elharo-patch-1 in repository https://gitbox.apache.org/repos/asf/maven-enforcer.git
commit cd9099c63e5af905ec222b0fd1cf3b8a16dd89d2 Author: Elliotte Rusty Harold <elh...@users.noreply.github.com> AuthorDate: Wed Jan 8 14:01:02 2025 +0000 [MENFORCER-511] Match start-tag to end-tag --- enforcer-rules/src/site/apt/requireUpperBoundDeps.apt.vm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/enforcer-rules/src/site/apt/requireUpperBoundDeps.apt.vm b/enforcer-rules/src/site/apt/requireUpperBoundDeps.apt.vm index 802bdfe..9386d45 100644 --- a/enforcer-rules/src/site/apt/requireUpperBoundDeps.apt.vm +++ b/enforcer-rules/src/site/apt/requireUpperBoundDeps.apt.vm @@ -22,8 +22,8 @@ 2012-02-08 ----- - This rule requires that the version for each dependency resolved during a build, is equal - to or higher than all transitive dependency declarations. The version of each dependency + This rule requires that the version for each dependency resolved during a build is equal + to or higher than all transitive dependency declarations. The version of each dependency resolved during the build will normally be the version specified in the POM or the version with the least transitive steps (the "nearest" definition). For more information about Maven dependency resolution, see @@ -78,7 +78,7 @@ and ----------------------------------------------------------------------------------- - And this will succeed. + And this will succeed: ----------------------------------------------------------------------------------- <dependencies> @@ -96,7 +96,7 @@ and </dependencies> ----------------------------------------------------------------------------------- - Here is how a project should be setup to use this rule + Here is how a project should be setup to use this rule: ----------------------------------------------------------------------------------- <project> @@ -128,7 +128,7 @@ and --> <!-- only artifacts with provided scope will be excluded <excludedScopes> - <excludedScope>provided</excludedScopes> + <excludedScope>provided</excludedScope> </excludedScopes> --> </requireUpperBoundDeps>