The Spring Download Reference Guide provides instructions for upgrading to Tomcat 8 by setting a custom property in Maven:
<properties> <tomcat.version>8.0.3</tomcat.version> </properties>
What is the equivalent way to do the same in a Gradle assembly?
I tried the following to no avail. It remains in version 7.0.52 when the application starts.
buildscript { ... ext['tomcat.version'] = '8.0.3' ... }
spring-boot tomcat gradle
craig.schneider
source share