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

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


The following commit(s) were added to refs/heads/3.x by this push:
     new f8d9770af re-enabled servlet-plugin integration tests
f8d9770af is described below

commit f8d9770af206782f2cde98c502bd708979f92432
Author: lprimak <[email protected]>
AuthorDate: Mon Feb 2 17:57:33 2026 -0600

    re-enabled servlet-plugin integration tests
---
 samples/servlet-plugin/pom.xml                     | 25 ++++++++++++++++++----
 .../src/main/webapp/WEB-INF/shiro.ini              |  1 +
 2 files changed, 22 insertions(+), 4 deletions(-)

diff --git a/samples/servlet-plugin/pom.xml b/samples/servlet-plugin/pom.xml
index 7a15b41d6..a238528af 100644
--- a/samples/servlet-plugin/pom.xml
+++ b/samples/servlet-plugin/pom.xml
@@ -32,10 +32,6 @@
     <name>Apache Shiro :: Samples :: Servlet Plugin</name>
     <packaging>war</packaging>
 
-    <properties>
-        <skipITs>true</skipITs>
-    </properties>
-
     <build>
         <plugins>
             <plugin>
@@ -56,6 +52,16 @@
                     </requestLog>
                 </configuration>
             </plugin>
+            <plugin>
+                <artifactId>maven-failsafe-plugin</artifactId>
+                <configuration>
+                    <classpathDependencyExcludes>
+                        <classpathDependencyExclude>
+                            org.apache.shiro:shiro-servlet-plugin
+                        </classpathDependencyExclude>
+                    </classpathDependencyExcludes>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 
@@ -112,4 +118,15 @@
         </dependency>
     </dependencies>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>jakarta.platform</groupId>
+                <artifactId>jakarta.jakartaee-bom</artifactId>
+                <version>10.0.0</version>
+                <scope>import</scope>
+                <type>pom</type>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
 </project>
diff --git a/samples/servlet-plugin/src/main/webapp/WEB-INF/shiro.ini 
b/samples/servlet-plugin/src/main/webapp/WEB-INF/shiro.ini
index 71eb9f60d..440103351 100644
--- a/samples/servlet-plugin/src/main/webapp/WEB-INF/shiro.ini
+++ b/samples/servlet-plugin/src/main/webapp/WEB-INF/shiro.ini
@@ -55,3 +55,4 @@ goodguy = winnebago:drive:eagle5
 /logout = logout
 /account/** = authc
 /remoting/** = authc, roles[b2bClient], perms["remote:invoke:lan,wan"]
+/** = anon

Reply via email to