The documentation explains how to downgrade to Hibernate 4.3 for Maven, but not for Gradle. I tried excluding hibernate-core and hibernate-entitymanager from data-jpa and many other dependencies, but it doesn't work. What's the magic formula? 馃
You can downgrade by using below in gradle
plugins {
id "io.spring.dependency-management" version "0.6.0.RELEASE"
}
/* Above plugin is used to override default version in spring boot */
ext['hibernate.version'] = '4.3.11.Final'
This way you can downgrade or upgrade any version
Indeed, thanks @rajadileepkolli - I've upgraded the release notes Matt.
Most helpful comment
You can downgrade by using below in gradle
plugins {
id "io.spring.dependency-management" version "0.6.0.RELEASE"
}
/* Above plugin is used to override default version in spring boot */
ext['hibernate.version'] = '4.3.11.Final'
This way you can downgrade or upgrade any version