You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lp...@apache.org on 2023/01/07 19:39:12 UTC

[shiro] branch 1.11.x updated: [SHIRO-899] moved the HttpSessionContext Jakarta shim into Shiro package and out of jakarta package, to made JPMS work, and avoid split package issues

This is an automated email from the ASF dual-hosted git repository.

lprimak pushed a commit to branch 1.11.x
in repository https://gitbox.apache.org/repos/asf/shiro.git


The following commit(s) were added to refs/heads/1.11.x by this push:
     new 94a6480b [SHIRO-899] moved the HttpSessionContext Jakarta shim into Shiro package and out of jakarta package, to made JPMS work, and avoid split package issues
     new a2eb7e88 Merge pull request #637 from lprimak/native-session-relocation-fix-1.x
94a6480b is described below

commit 94a6480bb4f0524eefefd4010469f2a6e62ae41b
Author: lprimak <le...@flowlogix.com>
AuthorDate: Sat Dec 3 13:35:51 2022 -0600

    [SHIRO-899] moved the HttpSessionContext Jakarta shim into Shiro package and out of jakarta package,
    to made JPMS work, and avoid split package issues
---
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index 11f849ee..3a903f20 100644
--- a/pom.xml
+++ b/pom.xml
@@ -487,6 +487,10 @@
                                         <pattern>javax.json</pattern>
                                         <shadedPattern>jakarta.json</shadedPattern>
                                     </relocation>
+                                    <relocation>
+                                        <pattern>javax.servlet.http.HttpSessionContext</pattern>
+                                        <shadedPattern>org.apache.shiro.web.servlet.HttpSessionContext</shadedPattern>
+                                    </relocation>
                                     <relocation>
                                         <pattern>javax.servlet</pattern>
                                         <shadedPattern>jakarta.servlet</shadedPattern>