I'm currently running spring-boot version 1.4.0.RELEASE
application with embedded tomcat. Included Tomcat's version is 8.5.4
There's a need to update the tomcat version to 9.x
. When I looked at mvnrepository here, I found that there's an update available to tomcat version 9.0.5
(shown in pic below)
How should I use this version in my project if there's no way to directly mention this version in my pom.xml
?
I do not want to go the traditional deployment route (WAR artifacts on external tomcats).
spring-boot
version to2.0.0.RELEASE
however that has tomcat version8.5.28
– Berkiespring-boot-starter-parent
as the parent of your project. – Proboscidean