I have a simple spring boot app that I am trying to add spring cloud consul to. Spring cloud consul relies on a newer version of spring boot. In my POM I have specified version 1.3.5.RELEASE
for all my spring boot artifacts.
The problem is that, even though version 1.3.5 is specified for spring-boot-starter-web
it still downloads dependencies with version 1.2.3
Is there a way to have maven get the 1.3.5.RELEASE
for ALL spring boot artifacts, including transitive dependencies? I know I can explicitly list them all, but is there a better way?