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
commit d6f975d9c85c21edbb3c4d54c67d0296e1550704 Author: lprimak <[email protected]> AuthorDate: Wed Jan 21 23:05:55 2026 -0600 more dependency updates for samples --- samples/guice/pom.xml | 11 ++++++++--- samples/pom.xml | 4 ++-- samples/web/pom.xml | 12 +++++++++--- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/samples/guice/pom.xml b/samples/guice/pom.xml index d031335d0..b27ee6180 100644 --- a/samples/guice/pom.xml +++ b/samples/guice/pom.xml @@ -94,18 +94,23 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.eclipse.jetty.ee9</groupId> - <artifactId>jetty-ee9-apache-jsp</artifactId> + <groupId>org.eclipse.jetty.ee11</groupId> + <artifactId>jetty-ee11-apache-jsp</artifactId> <version>${jetty.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>apache-jstl</artifactId> - <version>${jetty.version}</version> + <version>10.0.26</version> <type>pom</type> <scope>test</scope> </dependency> + <dependency> + <groupId>org.eclipse.jetty.ee10</groupId> + <artifactId>jetty-ee10-annotations</artifactId> + <version>${jetty.version}</version> + </dependency> <dependency> <groupId>org.apache.shiro.integrationtests</groupId> diff --git a/samples/pom.xml b/samples/pom.xml index f2d33e958..88978cda2 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -40,15 +40,15 @@ <modules> <module>aspectj</module> + <module>quickstart</module> <module>quickstart-guice</module> + <module>spring</module> </modules> <profiles> <profile> <id>deferred-for-3x</id> <modules> - <module>quickstart</module> - <module>spring</module> <module>spring-boot</module> <module>spring-boot-3-web</module> <module>spring-mvc</module> diff --git a/samples/web/pom.xml b/samples/web/pom.xml index 69e9ec4eb..00eff461a 100644 --- a/samples/web/pom.xml +++ b/samples/web/pom.xml @@ -116,18 +116,24 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>org.eclipse.jetty.ee9</groupId> - <artifactId>jetty-ee9-apache-jsp</artifactId> + <groupId>org.eclipse.jetty.ee10</groupId> + <artifactId>jetty-ee10-apache-jsp</artifactId> <version>${jetty.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>apache-jstl</artifactId> - <version>${jetty.version}</version> + <version>10.0.26</version> <type>pom</type> <scope>test</scope> </dependency> + <dependency> + <groupId>org.eclipse.jetty.ee10</groupId> + <artifactId>jetty-ee10-annotations</artifactId> + <version>${jetty.version}</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.shiro.integrationtests</groupId> <artifactId>shiro-its-support</artifactId>
