Hibernate Commons Annotations.
Hibernate Commons Annotations is a utility project used by annotations based Hibernate sub-projects..
Here is the list of declaration for hibernate-commons-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-commons-annotations</artifactId> <version>3.1.0.GA</version> </dependency>
If you think this Maven repository POM file listing for hibernate-commons-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-commons-annotations-3.1.0.GA has 1 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 | slf4j-api 1.4.2 The slf4j API | 8 |
The following table lists the most popular artifacts which are depending on hibernate-commons-annotations-3.1.0.GA. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JPA Hibernate | hibernate-search 3.1.1.GA Hibernate Search | 69 |
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 | hibernate-entitymanager 3.4.0.GA Hibernate Entitity Manager | 38 |
JPA Hibernate | hibernate-annotations 3.4.0.GA Annotations metadata for Hibernate | 44 |
The following packages are defined in the hibernate-commons-annotations-3.1.0.GA.jar
org.hibernate.annotations.common org.hibernate.annotations.common.annotationfactory org.hibernate.annotations.common.reflection org.hibernate.annotations.common.reflection.java org.hibernate.annotations.common.reflection.java.generics org.hibernate.annotations.common.util
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-commons-annotations</artifactId> <packaging>jar</packaging> <name>Hibernate Commons Annotations</name> <version>3.1.0.GA</version> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> </license> </licenses> <description>Hibernate Commons Annotations is a utility project used by annotations based Hibernate sub-projects.</description> <scm> <url>scm:svn:http://anonsvn.jboss.org/repos/hibernate/commons-annotations</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.4.2</version> </dependency> </dependencies> </project>