[jbpm-commits] JBoss JBPM SVN: r2035 - in jbpm3/trunk: modules/jpdl/core and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Aug 28 01:30:06 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-08-28 01:30:06 -0400 (Thu, 28 Aug 2008)
New Revision: 2035

Added:
   jbpm3/trunk/modules/jpdl/core/src/main/resources/hibernate.properties.postgresql.xml
Modified:
   jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/command.sh
   jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/config.xml
   jbpm3/trunk/modules/jpdl/core/pom.xml
Log:
Add PostgreSQL Axis

Modified: jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/command.sh
===================================================================
--- jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/command.sh	2008-08-28 04:34:55 UTC (rev 2034)
+++ jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/command.sh	2008-08-28 05:30:06 UTC (rev 2035)
@@ -18,6 +18,12 @@
         JBOSS_SVN=@hudson.jboss422.url@
         JBOSS_REV=@hudson.jboss422.rev@
         ;;
+
+    jboss500*)
+        JBOSS_BUILD=@hudson.jboss500.build@
+        JBOSS_SVN=@hudson.jboss500.url@
+        JBOSS_REV=@hudson.jboss500.rev@
+        ;;
 esac
 
 JBOSS_INSTANCE=$JBOSSDIR/build/output/$JBOSS_BUILD

Modified: jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/config.xml
===================================================================
--- jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/config.xml	2008-08-28 04:34:55 UTC (rev 2034)
+++ jbpm3/trunk/hudson/hudson-home/jobs/jBPM-Matrix/config.xml	2008-08-28 05:30:06 UTC (rev 2035)
@@ -32,6 +32,7 @@
       <values>
         <string>jboss421</string>
         <string>jboss422</string>
+        <string>jboss500</string>
       </values>
     </axis>
     <axis>
@@ -39,6 +40,7 @@
       <values>
         <string>hsqldb</string>
         <string>mysql</string>
+        <string>postgresql</string>
       </values>
     </axis>
     <axis>

Modified: jbpm3/trunk/modules/jpdl/core/pom.xml
===================================================================
--- jbpm3/trunk/modules/jpdl/core/pom.xml	2008-08-28 04:34:55 UTC (rev 2034)
+++ jbpm3/trunk/modules/jpdl/core/pom.xml	2008-08-28 05:30:06 UTC (rev 2035)
@@ -277,5 +277,28 @@
       </dependencies>
     </profile>
     
+    <!-- 
+    Name:  postgresql
+    Descr: MySQL Database Setup   
+    -->
+    <profile>
+      <id>postgresql</id>
+      <activation>
+        <property>
+          <name>database</name>
+          <value>postgresql</value>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>postgresql</groupId>
+          <artifactId>postgresql</artifactId>
+          <classifier>jdbc3</classifier>
+          <version>7.4</version>
+          <scope>test</scope>
+        </dependency>
+      </dependencies>
+    </profile>
+    
   </profiles>
 </project>
\ No newline at end of file

Added: jbpm3/trunk/modules/jpdl/core/src/main/resources/hibernate.properties.postgresql.xml
===================================================================
--- jbpm3/trunk/modules/jpdl/core/src/main/resources/hibernate.properties.postgresql.xml	                        (rev 0)
+++ jbpm3/trunk/modules/jpdl/core/src/main/resources/hibernate.properties.postgresql.xml	2008-08-28 05:30:06 UTC (rev 2035)
@@ -0,0 +1,13 @@
+
+    <!-- hibernate dialect -->
+    <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
+
+    <!-- JDBC connection properties (begin) -->
+    <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
+    <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/jbpmtest</property>
+    <property name="hibernate.connection.username">jbpmtest</property>
+    <property name="hibernate.connection.password"></property>
+
+    <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
+
+    <property name="hibernate.hbm2ddl.auto">create</property>


Property changes on: jbpm3/trunk/modules/jpdl/core/src/main/resources/hibernate.properties.postgresql.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbpm-commits mailing list