Hibernate JPA Support.
Hibernate O/RM implementation of the JPA specification.
Here is the list of declaration for hibernate-entitymanager. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>4.3.5.Final</version> </dependency>
If you think this Maven repository POM file listing for hibernate-entitymanager is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License
URL: http://www.gnu.org/licenses/lgpl-2.1.html.
The hibernate-entitymanager-4.3.5.Final has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | jboss-logging 3.1.3.GA The JBoss Logging Framework | 73 |
JPA Hibernate | hibernate-core 4.3.5.Final The core O/RM functionality as provided by Hibernate | 9 |
XML | dom4j 1.6.1 dom4j: the flexible XML framework for Java | 343 |
JPA Hibernate | hibernate-commons-annotations 4.0.4.Final Common reflection code used in support of annotation processing | 11 |
JPA Hibernate | hibernate-jpa-2.1-api 1.0.0.Final Clean-room definition of JPA APIs intended for use in developing Hibernate JPA implementation. See README.md for details | 23 |
JBoss | jboss-transaction-api_1.2_spec 1.0.0.Final The Java Transaction 1.2 API classes | 51 |
File | javassist 3.18.1-GA Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java. | 164 |
The following packages are defined in the hibernate-entitymanager-4.3.5.Final.jar
org.hibernate.ejb org.hibernate.ejb.cfg.spi org.hibernate.ejb.packaging org.hibernate.jpa org.hibernate.jpa.boot.archive.internal org.hibernate.jpa.boot.archive.spi org.hibernate.jpa.boot.internal org.hibernate.jpa.boot.scan.internal org.hibernate.jpa.boot.scan.spi org.hibernate.jpa.boot.spi org.hibernate.jpa.criteria org.hibernate.jpa.criteria.compile org.hibernate.jpa.criteria.expression org.hibernate.jpa.criteria.expression.function org.hibernate.jpa.criteria.path org.hibernate.jpa.criteria.predicate org.hibernate.jpa.event.internal.core org.hibernate.jpa.event.internal.jpa org.hibernate.jpa.event.spi org.hibernate.jpa.event.spi.jpa org.hibernate.jpa.graph.internal org.hibernate.jpa.internal org.hibernate.jpa.internal.instrument org.hibernate.jpa.internal.metamodel org.hibernate.jpa.internal.schemagen org.hibernate.jpa.internal.util org.hibernate.jpa.spi
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>4.3.5.Final</version> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.1.3.GA</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> <version>1.2.0.Beta1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.3.5.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate.common</groupId> <artifactId>hibernate-commons-annotations</artifactId> <version>4.0.4.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <version>1.0.0.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.spec.javax.transaction</groupId> <artifactId>jboss-transaction-api_1.2_spec</artifactId> <version>1.0.0.Final</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.18.1-GA</version> <scope>compile</scope> </dependency> </dependencies> <name>Hibernate JPA Support</name> <description>Hibernate O/RM implementation of the JPA specification</description> <url>http://hibernate.org</url> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <issueManagement> <system>jira</system> <url>https://hibernate.atlassian.net/browse/HHH</url> </issueManagement> <scm> <url>http://github.com/hibernate/hibernate-orm</url> <connection>scm:git:http://github.com/hibernate/hibernate-orm.git</connection> <developerConnection>scm:git:git@github.com:hibernate/hibernate-orm.git</developerConnection> </scm> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> <comments>See discussion at http://hibernate.org/license for more details.</comments> <distribution>repo</distribution> </license> </licenses> </project>