I have a multimodule project with Spring Boot 1.3.8. Currently I want to update to 1.4.1 but it is currently pain, because of few other major upgrades like querydsl, thyemeleaf, hibernate.
So I found information you could use Hibernate 5 with Spring Boot 1.3.8 and you need only to overwrite the version number of hibernate in the properties. (Example: enter link description here)
I did in the Parent Pom:
<properties>
<hibernate.version>5.0.11.Final</hibernate.version>
...
</properties>
It is the same pom where spring boot dependencies are declared under dependency management:
<dependencyManagement>
<dependencies>
<!-- SPRING-BOOT ... -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<type>pom</type>
<version>${org.springframework.boot-version}</version>
<scope>import</scope>
</dependency>
....
I also tried to add <hibernate.version>5.0.11.Final</hibernate.version>
into the sub modules pom. No change, too.
What am I missing?