Skip to content
Snippets Groups Projects
Commit aa60b56a authored by stendler's avatar stendler
Browse files

use newer hibernate 5.2.12

the latest release spring-starter-data-jpa uses an older hibernate version (5.0.12) that does not support java8 features like time and date.

we use this to override it with our own dependency as long as spring-boot uses the old one.
parent 4cb1f0c7
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,18 @@ ...@@ -44,6 +44,18 @@
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<!-- override sping-data-jpa hibernate (5.0.12)
it is too old and does not correctly use java8 time
5.2.12 fixes this
remove when updating spring-boot (to 2.0)
-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.2.12.Final</version>
</dependency>
<!-- DataSources --> <!-- DataSources -->
<dependency> <dependency>
<groupId>mysql</groupId> <groupId>mysql</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment