Maven Repository - POM file for JPA Hibernate hibernate-annotations 3.3.0.ga 3.3.0.ga

Summary

Hibernate Annotations.

EJB3-style annotations for Hibernate.

Declaration

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.0.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.

License

Name:GNU LESSER GENERAL PUBLIC LICENSE
URL: http://www.gnu.org/licenses/lgpl.txt.

Depends on

The hibernate-annotations-3.3.0.ga has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JPA Hibernatehibernate 3.2.1.ga
Relational Persistence for Java
13
EJBpersistence-api 1.0
The Enterprise JavaBeans architecture is a component architecture for the development and deployment of component-based business applications. The purpose of Enterprise JavaBeans (EJB) 3.0 is to improve the EJB architecture by reducing its complexity from the developer's point of view.
361
Searchlucene-core 2.0.0
Apache Lucene Java
5




Depended by

The following table lists the most popular artifacts which are depending on hibernate-annotations-3.3.0.ga. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JPA Hibernatehibernate-entitymanager 3.3.1.ga
Hibernate EntityManager implements the programming interfaces and lifecycle rules as defined by the EJB3 persistence specification.
29

Packages

The following packages are defined in the hibernate-annotations-3.3.0.ga.jar

org.hibernate
org.hibernate.annotations
org.hibernate.cfg
org.hibernate.cfg.annotations
org.hibernate.cfg.annotations.reflection
org.hibernate.mapping
org.hibernate.type

POM File Source

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.0.ga</version>

  <name>Hibernate Annotations</name>
  <description>EJB3-style annotations 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.1.ga</version>
    </dependency>
    <dependency>
      <groupId>javax.persistence</groupId>
      <artifactId>persistence-api</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-core</artifactId>
      <version>2.0.0</version>
      <optional>true</optional>
    </dependency>
<!--
Note for next version
seems that this also needs hibernate-commons-annotations 
http://jira.codehaus.org/browse/MAVENUPLOAD-1532
-->
  </dependencies>
  
</project>