Hibernate Commons Annotations.
Common reflection code used in support of annotation processing.
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.2.0.Final</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.2.0.Final has 5 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 |
---|---|---|
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
Log | jcl-over-slf4j 1.5.8 JCL 1.1.1 implementation over SLF4J | 13 |
Log | slf4j-log4j12 1.5.8 The slf4j log4j-12 binding | 50 |
The following plugins are used in the hibernate-commons-annotations-3.2.0.Final.jar
The following packages are defined in the hibernate-commons-annotations-3.2.0.Final.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.
<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-commons-annotations</artifactId> <packaging>jar</packaging> <version>3.2.0.Final</version> <name>Hibernate Commons Annotations</name> <description>Common reflection code used in support of annotation processing</description> <url>http://hibernate.org</url> <inceptionYear>2005</inceptionYear> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE</name> <url>http://www.gnu.org/licenses/lgpl.txt</url> </license> </licenses> <mailingLists> <mailingList> <name>Hibernate Announcements</name> <post>hibernate-announce@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-announce</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-announce</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-dev/</archive> </mailingList> <mailingList> <name>Hibernate Commit Notificatons</name> <post>hibernate-commits@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-commits</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-commits</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-commits/</archive> </mailingList> <mailingList> <name>Hibernate Developers</name> <post>hibernate-dev@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-dev</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-dev</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-dev/</archive> <otherArchives> <otherArchive>http://www.mail-archive.com/hibernate-dev%40lists.jboss.org/index.html</otherArchive> </otherArchives> </mailingList> <mailingList> <name>Hibernate Issue Notifications</name> <post>hibernate-issues@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-issues</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-issues</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-issues/</archive> </mailingList> </mailingLists> <issueManagement> <system>jira</system> <url>http://opensource.atlassian.com/projects/hibernate/browse/HCANN</url> </issueManagement> <scm> <connection>scm:svn:https://svn.jboss.org/repos/hibernate/commons-annotations/tags/3.2.0.Final</connection> <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/commons-annotations/tags/3.2.0.Final</developerConnection> <url>https://svn.jboss.org/repos/hibernate/commons-annotations/tags/3.2.0.Final</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- test-scoped dependencies for common testing dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>99.0-does-not-exist</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging-api</artifactId> <version>99.0-does-not-exist</version> <scope>test</scope> </dependency> <!-- / test-scoped dependencies for common testing dependencies --> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4jVersion}</version> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} --> <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml --> <!-- todo : replace this with direct svn access once the svnkit providers are available --> <id>repository.jboss.org</id> <url>file://${maven.repository.root}</url> </repository> <snapshotRepository> <id>snapshots.jboss.org</id> <name>JBoss Snapshot Repository</name> <url>dav:https://snapshots.jboss.org/maven2</url> </snapshotRepository> </distributionManagement> <properties> <slf4jVersion>1.5.8</slf4jVersion> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> </build> </project>