[hibernate-commits] Hibernate SVN: r18131 - core/branches/Branch_3_3_2_GA_CP/parent.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Dec 4 04:13:20 EST 2009


Author: stliu
Date: 2009-12-04 04:13:20 -0500 (Fri, 04 Dec 2009)
New Revision: 18131

Modified:
   core/branches/Branch_3_3_2_GA_CP/parent/pom.xml
Log:
JBPAPP-3218 update db profile in hibernate eap 5 cp branch 

Modified: core/branches/Branch_3_3_2_GA_CP/parent/pom.xml
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/parent/pom.xml	2009-12-04 09:12:57 UTC (rev 18130)
+++ core/branches/Branch_3_3_2_GA_CP/parent/pom.xml	2009-12-04 09:13:20 UTC (rev 18131)
@@ -452,52 +452,74 @@
             </properties>
         </profile>
 
-        <!-- The PostgreSQL test envionment -->
+        <!-- The PostgreSQL 8.2.4 test envionment -->
         <profile>
-            <id>postgresql823</id>
+            <id>postgresql824</id>
             <dependencies>
                 <dependency>
                     <groupId>postgresql</groupId>
                     <artifactId>postgresql</artifactId>
-                    <version>8.2-504</version>
-                    <classifier>jdbc3</classifier>
+                    <version>8.2-504.jdbc3</version>
+                    <scope>test</scope>
                 </dependency>
             </dependencies>
             <properties>
                 <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect>
                 <jdbc.driver>org.postgresql.Driver</jdbc.driver>
-                <jdbc.url>jdbc:postgresql://dev01.qa.atl.jboss.com:5432:hibbr330</jdbc.url>
+                <jdbc.url>jdbc:postgresql://vmg01.mw.lab.eng.bos.redhat.com:5432:hibbr330</jdbc.url>
                 <jdbc.user>hibbr330</jdbc.user>
                 <jdbc.pass>hibbr330</jdbc.pass>
-                <jdbc.isolation />
+                <jdbc.isolation/>
             </properties>
         </profile>
 
+        <!-- The PostgreSQL 8.3.7 test envionment -->
+        <profile>
+            <id>postgresql837</id>
+            <dependencies>
+                <dependency>
+                    <groupId>postgresql</groupId>
+                    <artifactId>postgresql</artifactId>
+                    <version>8.2-504.jdbc3</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+            <properties>
+                <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect>
+                <jdbc.driver>org.postgresql.Driver</jdbc.driver>
+                <jdbc.url>jdbc:postgresql://vmg03.mw.lab.eng.bos.redhat.com:5432:hibbr330</jdbc.url>
+                <jdbc.user>hibbr330</jdbc.user>
+                <jdbc.pass>hibbr330</jdbc.pass>
+                <jdbc.isolation/>
+            </properties>
+        </profile>
+
         <!--
             ###################################################################
             Then, those with commercial drivers
             ###################################################################
         -->
 
-        <!-- The DB2 8.x test envionment (using 9x drivers)-->
+        <!-- The DB2 9.7 test envionment (using 9x drivers)-->
         <profile>
-            <id>db2v82</id>
+            <id>db2v97</id>
             <dependencies>
                 <dependency>
                     <groupId>com.ibm</groupId>
                     <artifactId>db2jcc</artifactId>
-                    <version>3.1.57</version>
+                    <version>3.57.86</version>
                 </dependency>
                 <dependency>
                     <groupId>com.ibm</groupId>
                     <artifactId>db2jcc_license_cu</artifactId>
-                    <version>3.1.57</version>
+                    <version>3.57.86</version>
                 </dependency>
             </dependencies>
             <properties>
                 <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect>
                 <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver>
-                <jdbc.url>jdbc:db2://dev32.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
+                <jdbc.url>jdbc:db2://vmg06.mw.lab.eng.bos.redhat.com:50000/jbossqa
+				</jdbc.url>
                 <jdbc.user>hibbr330</jdbc.user>
                 <jdbc.pass>hibbr330</jdbc.pass>
                 <jdbc.isolation />



More information about the hibernate-commits mailing list