From 9e255f10ae2b147b046e3a0bbd1b90d8df7a4bb0 Mon Sep 17 00:00:00 2001 From: Harpreet Singh Date: Mon, 2 Dec 2024 02:26:00 +0530 Subject: [PATCH] Fix: Correct OpenSAML 5.x Documentation - Fixed invalid XML tags in dependency examples. - Corrected typo in `` ("opensaml-saml-imple" -> "opensaml-saml-impl"). - Excluded all OpenSAML 4.x dependencies. - Removed redundant dependencies (`opensaml-core-api` and `opensaml-core-impl`) as they are transitively included in `opensaml-saml-api` and `opensaml-saml-impl`. Closes gh-16191 --- .../ROOT/pages/servlet/saml2/opensaml.adoc | 39 ++++++------------- 1 file changed, 11 insertions(+), 28 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/saml2/opensaml.adoc b/docs/modules/ROOT/pages/servlet/saml2/opensaml.adoc index ba3260ff5dc..9ffdac62d06 100644 --- a/docs/modules/ROOT/pages/servlet/saml2/opensaml.adoc +++ b/docs/modules/ROOT/pages/servlet/saml2/opensaml.adoc @@ -25,33 +25,6 @@ Maven:: + [source,maven,role="primary"] ---- - - - - org.opensaml - opensaml-core-api - 5.1.2 - - - org.opensaml - opensaml-core-impl - 5.1.2 - - - org.opensaml - opensaml-saml-api - 5.1.2 - - - org.opensaml - opensaml-saml-impl - 5.1.2 - - - - -// ... - org.springframework.security @@ -59,10 +32,20 @@ Maven:: org.opensaml - opensaml-core + * + + org.opensaml + opensaml-saml-api + 5.1.2 + + + org.opensaml + opensaml-saml-impl + 5.1.2 + ----