Hibernate Entitity Manager.
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>3.4.0.GA</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.txt.
The hibernate-entitymanager-3.4.0.GA 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 |
---|---|---|
EJB | ejb3-persistence 1.0.2.GA Java Persistence API | 8 |
JPA Hibernate | hibernate-commons-annotations 3.1.0.GA Hibernate Commons Annotations is a utility project used by annotations based Hibernate sub-projects. | 7 |
JPA Hibernate | hibernate-annotations 3.4.0.GA Annotations metadata for Hibernate | 44 |
Log | slf4j-api 1.4.2 The slf4j API | 8 |
XML | dom4j 1.6.1 dom4j: the flexible XML framework for Java | 343 |
JEE Library | jta 1.1 The javax.transaction package. It is appropriate for inclusion in a classpath, and may be added to a Java 2 installation. | 184 |
File | javassist 3.4.GA Simple Java bytecode manipulation | 54 |
The following table lists the most popular artifacts which are depending on hibernate-entitymanager-3.4.0.GA. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | scalajpa_2.9.1 1.4 This module provides some basic classes to simplify using JPA (Java Persistence) under Scala. | 11 |
Spring | spring-orm 3.2.0.RELEASE Spring Object/Relational Mapping | 6 |
JPA Hibernate | hibernate-validator 3.1.0.GA Following the DRY (Don't Repeat Yourself) principle, Hibernate Validator let's you express your domain constraints once (and only once) and ensure their compliance at various level of your system automatically. | 6 |
JPA Hibernate | scalajpa_2.9.2 1.4 This module provides some basic classes to simplify using JPA (Java Persistence) under Scala. | 22 |
Spring | spring-orm 3.2.3.RELEASE Spring Object/Relational Mapping | 10 |
JPA Hibernate | scalajpa_2.10 1.4 This module provides some basic classes to simplify using JPA (Java Persistence) under Scala. | 13 |
Spring | spring-orm 3.2.2.RELEASE Spring Object/Relational Mapping | 69 |
Spring | spring-orm 3.2.4.RELEASE Spring Object/Relational Mapping | 8 |
The following packages are defined in the hibernate-entitymanager-3.4.0.GA.jar
org.hibernate.ejb org.hibernate.ejb.connection org.hibernate.ejb.event org.hibernate.ejb.instrument org.hibernate.ejb.packaging org.hibernate.ejb.transaction org.hibernate.ejb.util org.hibernate.engine
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>3.4.0.GA</version> <name>Hibernate Entitity Manager</name> <description>Hibernate Entitity Manager</description> <url>http://hibernate.org</url> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>ejb3-persistence</artifactId> <version>1.0.2.GA</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-commons-annotations</artifactId> <version>3.1.0.GA</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-annotations</artifactId> <version>3.4.0.GA</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>3.3.0.SP1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.4.2</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.4.GA</version> </dependency> </dependencies> </project>