From f22bd3976e729f978cdb7e450a16043822809dd4 Mon Sep 17 00:00:00 2001 From: karstenhusberg Date: Thu, 12 Dec 2024 15:52:04 +0100 Subject: [PATCH 1/2] Update index.adoc There is no ee10-jaas module, or ee8-jaas or ee8-jaas as far as I can see and module 'jaas' made it work in my ee10 set-up. --- .../jetty/modules/operations-guide/pages/jaas/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/jetty/modules/operations-guide/pages/jaas/index.adoc b/documentation/jetty/modules/operations-guide/pages/jaas/index.adoc index 876233222fd7..0f89ac0d5860 100644 --- a/documentation/jetty/modules/operations-guide/pages/jaas/index.adoc +++ b/documentation/jetty/modules/operations-guide/pages/jaas/index.adoc @@ -35,7 +35,7 @@ own custom https://docs.oracle.com/javase/7/docs/api/javax/security/auth/spi/Log [[module]] === The `jaas` module -Enable the `{ee-all}-jaas` module appropriate for your EE platform: +Enable the `jaas` module. [source] ---- From 7c41c6c9148696b00fa9f1e7bd4a5d29e70a275c Mon Sep 17 00:00:00 2001 From: karstenhusberg Date: Tue, 17 Dec 2024 09:28:45 +0100 Subject: [PATCH 2/2] Update JaasConfiguration.java remove reference to non-existing package --- .../java/org/eclipse/jetty/ee10/webapp/JaasConfiguration.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jetty-ee10/jetty-ee10-webapp/src/main/java/org/eclipse/jetty/ee10/webapp/JaasConfiguration.java b/jetty-ee10/jetty-ee10-webapp/src/main/java/org/eclipse/jetty/ee10/webapp/JaasConfiguration.java index d09ecdf8cbaf..f8618698ad31 100644 --- a/jetty-ee10/jetty-ee10-webapp/src/main/java/org/eclipse/jetty/ee10/webapp/JaasConfiguration.java +++ b/jetty-ee10/jetty-ee10-webapp/src/main/java/org/eclipse/jetty/ee10/webapp/JaasConfiguration.java @@ -34,8 +34,7 @@ public JaasConfiguration() super(new Builder() .addDependencies(WebXmlConfiguration.class, MetaInfConfiguration.class, WebInfConfiguration.class, FragmentConfiguration.class) .addDependents(WebAppConfiguration.class) - .protectAndExpose("org.eclipse.jetty.security.jaas.") - .protectAndExpose("org.eclipse.jetty.ee10.jaas.")); + .protectAndExpose("org.eclipse.jetty.security.jaas.")); } @Override