Hibernate Annotations.
Annotations metadata for Hibernate.
Here is the list of declaration for hibernate-annotations. 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-annotations</artifactId> <version>3.3.1.GA</version> </dependency>
If you think this Maven repository POM file listing for hibernate-annotations 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-annotations-3.3.1.GA has 4 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 |
---|---|---|
JPA Hibernate | hibernate 3.2.6.ga Relational Persistence for Java | 35 |
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
The following table lists the most popular artifacts which are depending on hibernate-annotations-3.3.1.GA. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | hibernate-entitymanager 3.3.2.GA Hibernate Entitity Manager | 12 |
Library | vraptor 3.4.0 Java web MVC framework for fast and maintainable development | 11 |
Library | vraptor 3.4.1 Java web MVC framework for fast and maintainable development | 12 |
The following packages are defined in the hibernate-annotations-3.3.1.GA.jar
org.hibernate org.hibernate.annotations org.hibernate.cfg org.hibernate.cfg.annotations org.hibernate.cfg.annotations.reflection org.hibernate.cfg.search org.hibernate.mapping org.hibernate.type
Here is the content of the POM file.
<?xml version="1.0"?> <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/maven-v4_0_0.xsd" > <modelVersion>4.0.0</modelVersion> <groupId>org.hibernate</groupId> <artifactId>hibernate-annotations</artifactId> <packaging>jar</packaging> <version>3.3.1.GA</version> <name>Hibernate Annotations</name> <description>Annotations metadata for Hibernate</description> <url>http://annotations.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>hibernate</artifactId> <version>3.2.6.ga</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-commons-annotations</artifactId> <version>3.0.0.ga</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>ejb3-persistence</artifactId> <version>1.0.1.GA</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0.4</version> </dependency> </dependencies> </project>