Hibernate Entity 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.6.7.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.
GNU General Public License.
The hibernate-entitymanager-3.6.7.Final has 2 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 |
---|---|---|
Development | shrinkwrap-api 1.0.0-alpha-6 Client View of the ShrinkWrap Project | 13 |
The following plugins are used in the hibernate-entitymanager-3.6.7.Final.jar
The following packages are defined in the hibernate-entitymanager-3.6.7.Final.jar
org.hibernate.ejb org.hibernate.ejb.cfg.spi org.hibernate.ejb.connection org.hibernate.ejb.criteria org.hibernate.ejb.criteria.expression org.hibernate.ejb.criteria.expression.function org.hibernate.ejb.criteria.path org.hibernate.ejb.criteria.predicate org.hibernate.ejb.event org.hibernate.ejb.instrument org.hibernate.ejb.metamodel org.hibernate.ejb.packaging org.hibernate.ejb.transaction org.hibernate.ejb.util org.hibernate.engine
Here is the content of the POM file.
<?xml version="1.0"?> <!-- ~ Hibernate, Relational Persistence for Idiomatic Java ~ ~ Copyright (c) 2011, Red Hat Inc. or third-party contributors as ~ indicated by the @author tags or express copyright attribution ~ statements applied by the authors. All third-party contributions are ~ distributed under license by Red Hat Inc. ~ ~ This copyrighted material is made available to anyone wishing to use, modify, ~ copy, or redistribute it subject to the terms and conditions of the GNU ~ Lesser General Public License, as published by the Free Software Foundation. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License ~ for more details. ~ ~ You should have received a copy of the GNU Lesser General Public License ~ along with this distribution; if not, write to: ~ Free Software Foundation, Inc. ~ 51 Franklin Street, Fifth Floor ~ Boston, MA 02110-1301 USA --> <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> <parent> <groupId>org.hibernate</groupId> <artifactId>hibernate-parent</artifactId> <version>3.6.7.Final</version> <relativePath>../hibernate-parent/pom.xml</relativePath> </parent> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <packaging>jar</packaging> <name>Hibernate Entity Manager</name> <description>Hibernate Entity Manager</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate-testing</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-api</artifactId> <version>1.0.0-alpha-6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.shrinkwrap</groupId> <artifactId>shrinkwrap-impl-base</artifactId> <version>1.0.0-alpha-6</version> <scope>test</scope> </dependency> <dependency> <!-- Only really needed for the antrun plugin defined below (which in turn is only really needed to work around a missing feature on the compile plugin; lovely no?). However I have not found a way to declare this dependency local to the antrun plugin and then reference it from the <javac />'s <classpath /> :( --> <groupId>${project.groupId}</groupId> <artifactId>hibernate-jpamodelgen</artifactId> <version>1.0.0.Final</version> <scope>test</scope> <exclusions> <exclusion> <!-- Use the jpa-api defined here, crossing fingers they match up signature-wise --> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <testResources> <testResource> <filtering>true</filtering> <directory>src/test/resources</directory> </testResource> <testResource> <filtering>true</filtering> <directory>src/test/bundles</directory> <targetPath>../bundles</targetPath> </testResource> </testResources> <plugins> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-injection-plugin</artifactId> <configuration> <bytecodeInjections> <bytecodeInjection> <expression>${project.version}</expression> <targetMembers> <methodBodyReturn> <className>org.hibernate.ejb.Version</className> <methodName>getVersionString</methodName> </methodBodyReturn> </targetMembers> </bytecodeInjection> </bytecodeInjections> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <!-- Define one configuration outside executions and without a phase in order to allow 'mvn antrun:run' --> <configuration> <tasks> <property name="target.dir" value="${project.build.directory}/generated-src/jpamodelgen"/> <property name="src.dir" value="${project.build.testSourceDirectory}"/> <property name="jdk16_home" value="${jdk16_home}"/> <property name="classpath" refid="maven.test.classpath"/> <ant antfile="${basedir}/build.xml"> <target name="generate-metamodel"/> </ant> </tasks> </configuration> <executions> <execution> <id>process_annotations</id> <phase>process-test-sources</phase> <configuration> <!-- No additional configuration needed. Unbound configuration gets inherited. (Feels wrong, but that's how it is) --> <testSourceRoot>${project.build.directory}/generated-src/jpamodelgen</testSourceRoot> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*TestCase.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>doc</id> <build> <plugins> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-jdocbook-plugin</artifactId> <configuration> <sourceDocumentName>master.xml</sourceDocumentName> <sourceDirectory>${basedir}/src/main/docbook</sourceDirectory> <masterTranslation>en</masterTranslation> <imageResource> <directory>${basedir}/src/main/docbook/en/images</directory> </imageResource> </configuration> <executions> <execution> <id>make-doc</id> <phase>package</phase> <goals> <goal>resources</goal> <goal>generate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jaxb</id> <activation> <jdk>1.5</jdk> </activation> <dependencies> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.1.3</version> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> </project>