[hibernate-commits] Hibernate SVN: r16531 - core/trunk/annotations.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon May 11 09:17:21 EDT 2009


Author: hardy.ferentschik
Date: 2009-05-11 09:17:21 -0400 (Mon, 11 May 2009)
New Revision: 16531

Modified:
   core/trunk/annotations/pom.xml
Log:
removed unnecessary depedencyManagement section and changed the postgresql definition. Using classifier did not work for me (using maven 2.1.0)

Modified: core/trunk/annotations/pom.xml
===================================================================
--- core/trunk/annotations/pom.xml	2009-05-11 12:28:36 UTC (rev 16530)
+++ core/trunk/annotations/pom.xml	2009-05-11 13:17:21 UTC (rev 16531)
@@ -52,78 +52,44 @@
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-core</artifactId>
+            <version>${version}</version>
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-commons-annotations</artifactId>
+            <version>${version}</version>
         </dependency>
         <dependency>
             <groupId>org.hibernate.java-persistence</groupId>
             <artifactId>jpa-api</artifactId>
+            <version>2.0.Beta1</version>
         </dependency>
         <dependency>
             <groupId>javassist</groupId>
             <artifactId>javassist</artifactId>
+            <version>3.4.GA</version>
             <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>cglib</groupId>
             <artifactId>cglib</artifactId>
             <scope>test</scope>
+            <version>2.2</version>
         </dependency>
         <dependency>
             <groupId>javax.validation</groupId>
             <artifactId>validation-api</artifactId>
+            <version>1.0.CR3-SNAPSHOT</version>
             <optional>true</optional>
         </dependency>
         <dependency>
             <groupId>org.hibernate</groupId>
             <artifactId>hibernate-validator</artifactId>
+            <version>4.0.0.Beta2-SNAPSHOT</version>
             <scope>test</scope>
         </dependency>
     </dependencies>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.hibernate</groupId>
-                <artifactId>hibernate-core</artifactId>
-                <version>${version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.hibernate</groupId>
-                <artifactId>hibernate-commons-annotations</artifactId>
-                <version>${version}</version>
-            </dependency>
-            <dependency>
-                <groupId>org.hibernate.java-persistence</groupId>
-                <artifactId>jpa-api</artifactId>
-                <version>2.0.Beta1</version>
-            </dependency>
-            <dependency>
-                <groupId>javassist</groupId>
-                <artifactId>javassist</artifactId>
-                <version>3.4.GA</version>
-            </dependency>
-            <dependency>
-                <groupId>cglib</groupId>
-                <artifactId>cglib</artifactId>
-                <version>2.2</version>
-            </dependency>
-            <dependency>
-                <groupId>org.hibernate</groupId>
-                <artifactId>hibernate-validator</artifactId>
-                <version>4.0.0.Beta2-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>javax.validation</groupId>
-                <artifactId>validation-api</artifactId>
-                <version>1.0.CR3-SNAPSHOT</version>
-            </dependency>
-
-        </dependencies>
-    </dependencyManagement>
-
     <build>
         <testResources>
             <testResource>
@@ -168,7 +134,6 @@
         </plugins>
     </build>
 
-
     <profiles>
        <profile>
             <id>doc</id>
@@ -312,8 +277,7 @@
                 <dependency>
                     <groupId>postgresql</groupId>
                     <artifactId>postgresql</artifactId>
-                    <version>8.2-504</version>
-                    <classifier>jdbc3</classifier>
+                    <version>8.2-504.jdbc3</version>
                 </dependency>
             </dependencies>
             <properties>




More information about the hibernate-commits mailing list