EJB-447 - Implement JPA 2.0 criteria apis

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17182 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2009-07-21 13:46:43 +00:00
parent a4e169d05d
commit f2ec4c6970
3 changed files with 10 additions and 1 deletions

View File

@ -62,7 +62,6 @@
<dependency>
<groupId>org.hibernate.java-persistence</groupId>
<artifactId>jpa-api</artifactId>
<version>2.0.Beta-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javassist</groupId>

View File

@ -69,6 +69,10 @@
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate.java-persistence</groupId>
<artifactId>jpa-api</artifactId>
</dependency>
</dependencies>
<dependencyManagement>

View File

@ -373,6 +373,12 @@
<artifactId>cglib</artifactId>
<version>2.2</version>
</dependency>
<!-- Set the version of the JPA api to be used throughout the the project -->
<dependency>
<groupId>org.hibernate.java-persistence</groupId>
<artifactId>jpa-api</artifactId>
<version>2.0.Beta-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>