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

hibernate: exclude entitymanager from spring-boot data-jpa

this breaks stuff with hibernate 5.2
(though somehow didn't when I first tested it?!)
parent 3ebc2dfc
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment