From 575655ca39f097abe595b757fe23e60838c97e75 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 19 Feb 2025 13:43:11 -0800 Subject: [PATCH] Upgrade Tomcat 11 smoke tests to Tomcat 11.0.4 --- .../spring-boot-smoke-test-tomcat11-ssl/build.gradle | 2 +- .../spring-boot-smoke-test-tomcat11/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11-ssl/build.gradle b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11-ssl/build.gradle index 7744f64216a..d7eb7dcb37f 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11-ssl/build.gradle +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11-ssl/build.gradle @@ -7,7 +7,7 @@ description = "Spring Boot Tomcat 11 SSL smoke test" configurations.all { resolutionStrategy.eachDependency { if (it.requested.group == 'org.apache.tomcat' || it.requested.group == 'org.apache.tomcat.embed') { - it.useVersion '11.0.0' + it.useVersion '11.0.4' } } } diff --git a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11/build.gradle b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11/build.gradle index 601263a0a9b..757499e7667 100644 --- a/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11/build.gradle +++ b/spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-tomcat11/build.gradle @@ -7,7 +7,7 @@ description = "Spring Boot Tomcat 11 smoke test" configurations.all { resolutionStrategy.eachDependency { if (it.requested.group == 'org.apache.tomcat' || it.requested.group == 'org.apache.tomcat.embed') { - it.useVersion '11.0.0' + it.useVersion '11.0.4' } } }