[hibernate-commits] Hibernate SVN: r17182 - in core/trunk: entitymanager and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Jul 21 09:46:43 EDT 2009


Author: steve.ebersole at jboss.com
Date: 2009-07-21 09:46:43 -0400 (Tue, 21 Jul 2009)
New Revision: 17182

Modified:
   core/trunk/annotations/pom.xml
   core/trunk/entitymanager/pom.xml
   core/trunk/parent/pom.xml
Log:
EJB-447 - Implement JPA 2.0 criteria apis


Modified: core/trunk/annotations/pom.xml
===================================================================
--- core/trunk/annotations/pom.xml	2009-07-21 13:45:51 UTC (rev 17181)
+++ core/trunk/annotations/pom.xml	2009-07-21 13:46:43 UTC (rev 17182)
@@ -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>

Modified: core/trunk/entitymanager/pom.xml
===================================================================
--- core/trunk/entitymanager/pom.xml	2009-07-21 13:45:51 UTC (rev 17181)
+++ core/trunk/entitymanager/pom.xml	2009-07-21 13:46:43 UTC (rev 17182)
@@ -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>

Modified: core/trunk/parent/pom.xml
===================================================================
--- core/trunk/parent/pom.xml	2009-07-21 13:45:51 UTC (rev 17181)
+++ core/trunk/parent/pom.xml	2009-07-21 13:46:43 UTC (rev 17182)
@@ -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>
 



More information about the hibernate-commits mailing list