This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/main by this push:
new b1eca1d23 chore: moved tomcat 10 version into a variable
b1eca1d23 is described below
commit b1eca1d23b5058ce5d92ce6ef6e630d6cebafcb7
Author: lprimak <[email protected]>
AuthorDate: Wed Mar 11 09:02:43 2026 -0500
chore: moved tomcat 10 version into a variable
---
pom.xml | 1 +
samples/spring-boot-3-web/pom.xml | 6 +++---
samples/web-jakarta/pom.xml | 2 +-
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index b5ef324a4..a59dc2813 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,6 +109,7 @@
<jdk.version>11</jdk.version>
<jetty.version>9.4.58.v20250814</jetty.version>
<tomcat.version>9.0.113</tomcat.version>
+ <tomcat10.version>10.1.50</tomcat10.version>
<owasp.java.encoder.version>1.4.0</owasp.java.encoder.version>
<!-- Don't change this version without also changing the shiro-quartz
and shiro-features
modules' OSGi metadata: -->
diff --git a/samples/spring-boot-3-web/pom.xml
b/samples/spring-boot-3-web/pom.xml
index 96191e9e2..19b83cd32 100644
--- a/samples/spring-boot-3-web/pom.xml
+++ b/samples/spring-boot-3-web/pom.xml
@@ -135,17 +135,17 @@
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
- <version>10.1.50</version>
+ <version>${tomcat10.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-el</artifactId>
- <version>10.1.49</version>
+ <version>${tomcat10.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
- <version>10.1.49</version>
+ <version>${tomcat10.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
diff --git a/samples/web-jakarta/pom.xml b/samples/web-jakarta/pom.xml
index f865858dc..043d6c3ee 100644
--- a/samples/web-jakarta/pom.xml
+++ b/samples/web-jakarta/pom.xml
@@ -33,7 +33,7 @@
<properties>
<meecrowave.version>1.2.15</meecrowave.version>
- <tomcat.version>10.1.49</tomcat.version>
+ <tomcat.version>${tomcat10.version}</tomcat.version>
<jacoco.skip>true</jacoco.skip>
</properties>