[jbpm-commits] JBoss JBPM SVN: r3691 - in jbpm3/branches/aguizar: hudson/hudson-home/jobs/jBPM3-Matrix and 3 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Jan 20 19:36:10 EST 2009


Author: alex.guizar at jboss.com
Date: 2009-01-20 19:36:10 -0500 (Tue, 20 Jan 2009)
New Revision: 3691

Modified:
   jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-Matrix/config.xml
   jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-ShortMatrix/config.xml
   jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.common.xml
   jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.postgresql.xml
   jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.sybase.xml
   jbpm3/branches/aguizar/modules/core/src/test/resources/log4j.xml
   jbpm3/branches/aguizar/pom.xml
Log:
JBPM-1369 add postgresql axis
change hbm2ddl operation from create to update

Modified: jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-Matrix/config.xml
===================================================================
--- jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-Matrix/config.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-Matrix/config.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -44,6 +44,7 @@
       <values>
         <string>hsqldb</string>
         <string>mysql</string>
+        <string>postgresql</string>
         <string>sybase</string>
       </values>
     </axis>

Modified: jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-ShortMatrix/config.xml
===================================================================
--- jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-ShortMatrix/config.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/hudson/hudson-home/jobs/jBPM3-ShortMatrix/config.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -38,6 +38,7 @@
       <values>
         <string>hsqldb</string>
         <string>mysql</string>
+        <string>postgresql</string>
         <string>sybase</string>
       </values>
     </axis>

Modified: jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.common.xml
===================================================================
--- jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.common.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.common.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -18,9 +18,9 @@
     <!-- ################################### -->
 
     <!-- Automatic schema creation (begin) -->
-    <property name="hibernate.hbm2ddl.auto">create</property>
+    <property name="hibernate.hbm2ddl.auto">update</property>
     <!-- Automatic schema creation (end) -->
-    
+
     <!-- Simple memory-only cache -->
     <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
 

Modified: jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.postgresql.xml
===================================================================
--- jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.postgresql.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.postgresql.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -1,4 +1,11 @@
+    <!-- 
+       System Service QA Database PostgreSQL
+       https://wiki.corp.jboss.com/bin/view/IT/SystemServiceQaDatabasePostgresql
 
+       Install PostgreSQL on Fedora
+       http://www.jboss.org/community/docs/DOC-13270
+    -->
+
     <!-- hibernate dialect -->
     <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
 

Modified: jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.sybase.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/modules/core/src/main/resources/hibernate.properties.sybase.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -1,12 +1,12 @@
     <!-- 
-       Out-of-the-box compatibility with Sybase
-       https://jira.jboss.org/jira/browse/JBPM-700
-       
        System Service QA Database Sybase
        https://wiki.corp.jboss.com/bin/view/IT/SystemServiceQaDatabaseSybase
-       
-       Install Sybase ASE 15.0.2 on Fedora9
+
+       Install Sybase ASE 15.0.2 on Fedora
        https://www.jboss.org/community/docs/DOC-12932
+
+       jBPM 3.3 on Sybase ASE 15
+       http://www.jboss.org/community/docs/DOC-12936
     -->
 
     <!-- hibernate dialect -->

Modified: jbpm3/branches/aguizar/modules/core/src/test/resources/log4j.xml
===================================================================
--- jbpm3/branches/aguizar/modules/core/src/test/resources/log4j.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/modules/core/src/test/resources/log4j.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -38,10 +38,11 @@
   <category name="org.hibernate.SQL">
     <priority value="DEBUG" />
   </category>
-  <category name="org.hibernate.connection">
+  <!--
+  <category name="org.hibernate.type">
     <priority value="TRACE" />
   </category>
-
+  -->
   <!-- ======================= -->
   <!-- Setup the Root category -->
   <!-- ======================= -->

Modified: jbpm3/branches/aguizar/pom.xml
===================================================================
--- jbpm3/branches/aguizar/pom.xml	2009-01-21 00:32:02 UTC (rev 3690)
+++ jbpm3/branches/aguizar/pom.xml	2009-01-21 00:36:10 UTC (rev 3691)
@@ -541,7 +541,7 @@
 
     <!--
     Name:  postgresql
-    Descr: MySQL Database Setup
+    Descr: PostgreSQL Database Setup
     -->
     <profile>
       <id>postgresql</id>




More information about the jbpm-commits mailing list