tags:

views:

261

answers:

1

I'm using Hibernate's implementation of JPA. My Maven pom.xml references hibernate-entitymanager. My question is, does Hibernate EntityManager (called "Standard Java Persistence API for Java SE and Java EE" on Hibernate's home page) depend on or use the Hibernate Core code?

I've discovered a bug with Hibernate that is documented and fixed in Hibernate Core. I want to know if EntityManager uses Core and thus has this fix.

+2  A: 

It does not include, but depends on Hibernate Core. Have a look at the detail page from MVN Repository to see the list of Hibernate EntityManager's dependencies.

Note that you can use the Maven Dependency Plugin to show detailed analysis of the dependencies resolved for your POM.

springify