From ec94079b8f2b1e66414f410d89003bd333fb6e7d 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 f6a702d5..d936a2b7 100644 --- a/jpa/eclipselink/pom.xml +++ b/jpa/eclipselink/pom.xml @@ -27,7 +27,7 @@ org.hibernate - hibernate-entitymanager + hibernate-core