From 4802640399eccc70431f50c6a121cfd863837f10 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 26 Jan 2015 14:42:55 +0000 Subject: [PATCH] Reference latest version of Tomcat 7 in the documentation --- spring-boot-docs/src/main/asciidoc/howto.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 279744a30b..5b9d37051b 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -666,7 +666,7 @@ property, e.g. for a simple webapp or service: [source,xml,indent=0,subs="verbatim,quotes,attributes"] ---- - 7.0.56 + 7.0.57 ... @@ -692,7 +692,7 @@ e.g. for a simple webapp or service: resolutionStrategy { eachDependency { if (it.requested.group == 'org.apache.tomcat.embed') { - it.useVersion '7.0.56' + it.useVersion '7.0.57' } } }