From 25a3996127911cb71c9c232228d38c479634752d Mon Sep 17 00:00:00 2001 From: Ivan Sopov Date: Sun, 19 Nov 2017 14:37:44 +0300 Subject: [PATCH] #321 - Fix Hibernate exclusion in EclipseLink sample. Previously, the deprecated hibernate-entitymanager dependency was excluded but that was not taking effect, since current spring-boot-starter-data-jpa depends on hibernate-core. --- jpa/eclipselink/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpa/eclipselink/pom.xml b/jpa/eclipselink/pom.xml index b829b973..50b79312 100644 --- a/jpa/eclipselink/pom.xml +++ b/jpa/eclipselink/pom.xml @@ -27,7 +27,7 @@ org.hibernate - hibernate-entitymanager + hibernate-core