#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.
This commit is contained in:
Ivan Sopov
2017-11-19 14:37:44 +03:00
committed by Oliver Gierke
parent 01e7b573eb
commit 25a3996127

View File

@@ -27,7 +27,7 @@
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId> <artifactId>hibernate-core</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>