JBoss JBPM SVN: r3515 - jbpm3/trunk/modules/core.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:36:43 -0500 (Mon, 22 Dec 2008)
New Revision: 3515
Modified:
jbpm3/trunk/modules/core/pom.xml
Log:
Fix JBPM-1764: Deadlocks on sybase
Modified: jbpm3/trunk/modules/core/pom.xml
===================================================================
--- jbpm3/trunk/modules/core/pom.xml 2008-12-22 20:29:01 UTC (rev 3514)
+++ jbpm3/trunk/modules/core/pom.xml 2008-12-22 20:36:43 UTC (rev 3515)
@@ -334,15 +334,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <excludes>
- <!-- [JBPM-1764] Deadlocks make job execution tests fail on Sybase -->
- <exclude>org/jbpm/job/executor/JobExecutorDbTest.java</exclude>
- <exclude>org/jbpm/graph/exe/SubProcessPlusConcurrencyDbTest.java</exclude>
- <exclude>org/jbpm/jbpm1072/JBPM1072Test.java</exclude>
- <exclude>org/jbpm/jbpm1755/JBPM1755Test.java</exclude>
- <exclude>org/jbpm/jbpm983/JBPM983Test.java</exclude>
- <exclude>org/jbpm/optimisticlocking/LockingTest.java</exclude>
- <exclude>org/jbpm/seam/JobExecutorCustomizationTest.java</exclude>
+ <excludes>
<!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema -->
<exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
</excludes>
17 years, 4 months
JBoss JBPM SVN: r3514 - projects/gwt-console/tags.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:29:01 -0500 (Mon, 22 Dec 2008)
New Revision: 3514
Added:
projects/gwt-console/tags/gwt-console-1.0.0.Beta2/
Log:
Beta2 release tag
Copied: projects/gwt-console/tags/gwt-console-1.0.0.Beta2 (from rev 3513, projects/gwt-console/trunk)
17 years, 4 months
JBoss JBPM SVN: r3513 - in projects/report-server/tags/report-server-1.0.0.Beta1: core and 1 other directories.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:27:10 -0500 (Mon, 22 Dec 2008)
New Revision: 3513
Modified:
projects/report-server/tags/report-server-1.0.0.Beta1/core/pom.xml
projects/report-server/tags/report-server-1.0.0.Beta1/pom.xml
projects/report-server/tags/report-server-1.0.0.Beta1/server/pom.xml
Log:
Version set to 1.0.0.Beta1
Modified: projects/report-server/tags/report-server-1.0.0.Beta1/core/pom.xml
===================================================================
--- projects/report-server/tags/report-server-1.0.0.Beta1/core/pom.xml 2008-12-22 20:20:15 UTC (rev 3512)
+++ projects/report-server/tags/report-server-1.0.0.Beta1/core/pom.xml 2008-12-22 20:27:10 UTC (rev 3513)
@@ -4,14 +4,13 @@
<name>JBoss jBPM3 - Report Core</name>
<groupId>org.jbpm</groupId>
<artifactId>report-core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<!-- Parent -->
<parent>
<groupId>org.jbpm</groupId>
<artifactId>report-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
Modified: projects/report-server/tags/report-server-1.0.0.Beta1/pom.xml
===================================================================
--- projects/report-server/tags/report-server-1.0.0.Beta1/pom.xml 2008-12-22 20:20:15 UTC (rev 3512)
+++ projects/report-server/tags/report-server-1.0.0.Beta1/pom.xml 2008-12-22 20:27:10 UTC (rev 3513)
@@ -4,7 +4,7 @@
<name>JBoss jBPM3 - Report (BIRT integration)</name>
<groupId>org.jbpm</groupId>
<artifactId>report-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.0.Beta1</version>
<packaging>pom</packaging>
<!-- Parent -->
@@ -18,6 +18,7 @@
<commons.logging.version>1.1.1</commons.logging.version>
<junit.version>3.8.1</junit.version>
<resteasy.version>1.0-beta-8</resteasy.version>
+ <servlet.version>2.4</servlet.version>
</properties>
<modules>
@@ -42,6 +43,13 @@
</dependency>
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>compile</scope>
+ <version>${servlet.version}</version>
+ </dependency>
+
+ <dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${resteasy.version}</version>
Modified: projects/report-server/tags/report-server-1.0.0.Beta1/server/pom.xml
===================================================================
--- projects/report-server/tags/report-server-1.0.0.Beta1/server/pom.xml 2008-12-22 20:20:15 UTC (rev 3512)
+++ projects/report-server/tags/report-server-1.0.0.Beta1/server/pom.xml 2008-12-22 20:27:10 UTC (rev 3513)
@@ -9,8 +9,8 @@
<!-- Parent -->
<parent>
<groupId>org.jbpm</groupId>
- <artifactId>balalaika-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <artifactId>report-parent</artifactId>
+ <version>1.0.0.Beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -24,6 +24,12 @@
<version>${version}</version>
</dependency>
<dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
+ <dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
</dependency>
17 years, 4 months
JBoss JBPM SVN: r3512 - projects/report-server/tags.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:20:15 -0500 (Mon, 22 Dec 2008)
New Revision: 3512
Added:
projects/report-server/tags/report-server-1.0.0.Beta1/
Log:
Create Beta1 release tag
Copied: projects/report-server/tags/report-server-1.0.0.Beta1 (from rev 3511, projects/report-server/trunk)
17 years, 4 months
JBoss JBPM SVN: r3511 - projects/report-server.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:19:13 -0500 (Mon, 22 Dec 2008)
New Revision: 3511
Added:
projects/report-server/tags/
Log:
Added tag directory
17 years, 4 months
JBoss JBPM SVN: r3510 - projects/gwt-console/trunk/server/src/main/webapp/WEB-INF.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:18:40 -0500 (Mon, 22 Dec 2008)
New Revision: 3510
Modified:
projects/gwt-console/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml
Log:
Disable scoped classloading
Modified: projects/gwt-console/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml
===================================================================
--- projects/gwt-console/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml 2008-12-22 20:17:12 UTC (rev 3509)
+++ projects/gwt-console/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml 2008-12-22 20:18:40 UTC (rev 3510)
@@ -6,11 +6,11 @@
<jboss-web>
- <class-loading>
+ <!--class-loading>
<loader-repository>
org.bpm.console.server:gwt-consoler-server.war
</loader-repository>
- </class-loading>
+ </class-loading-->
<security-domain>java:/jaas/jbpm-console</security-domain>
17 years, 4 months
JBoss JBPM SVN: r3509 - in projects/report-server/trunk/server/src/main/webapp: WEB-INF and 1 other directory.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-12-22 15:17:12 -0500 (Mon, 22 Dec 2008)
New Revision: 3509
Added:
projects/report-server/trunk/server/src/main/webapp/loader.gif
projects/report-server/trunk/server/src/main/webapp/loadffw.html
Modified:
projects/report-server/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml
Log:
Added loading page
Modified: projects/report-server/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml
===================================================================
--- projects/report-server/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml 2008-12-22 20:08:53 UTC (rev 3508)
+++ projects/report-server/trunk/server/src/main/webapp/WEB-INF/jboss-web.xml 2008-12-22 20:17:12 UTC (rev 3509)
@@ -6,11 +6,11 @@
<jboss-web>
- <class-loading>
+ <!--class-loading>
<loader-repository>
org.bpm.console.server:report-server.war
</loader-repository>
- </class-loading>
+ </class-loading-->
<security-domain>java:/jaas/jbpm-console</security-domain>
Added: projects/report-server/trunk/server/src/main/webapp/loader.gif
===================================================================
(Binary files differ)
Property changes on: projects/report-server/trunk/server/src/main/webapp/loader.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: projects/report-server/trunk/server/src/main/webapp/loadffw.html
===================================================================
--- projects/report-server/trunk/server/src/main/webapp/loadffw.html (rev 0)
+++ projects/report-server/trunk/server/src/main/webapp/loadffw.html 2008-12-22 20:17:12 UTC (rev 3509)
@@ -0,0 +1,47 @@
+<html>
+<head>
+ <script language='JavaScript'>
+ // get the current URL
+ var url = window.location.toString();
+ //get the parameters
+ url.match(/\?(.+)$/);
+ var params = RegExp.$1;
+ // split up the query string and store in an
+ // associative array
+ var params = params.split("&");
+ var queryStringList = {};
+
+ for(var i=0;i<params.length;i++)
+ {
+ var tmp = params[i].split("=");
+ queryStringList[tmp[0]] = unescape(tmp[1]);
+ }
+
+ var ffw = "";
+ for(var i in queryStringList)
+ {
+ if(i == "ffw")
+ {
+ ffw = queryStringList[i];
+ break;
+ }
+ }
+
+ alert("1:"+params);
+ </script>
+</head>
+<body>
+<br><br>
+<center>
+ <img src="loader.gif" alt="loading ..."/>
+ <h3 style="font-family:sans-serif;">Generating report, please wait...</h3>
+</center>
+<script type="text/javascript">
+ if(ffw != "")
+ {
+ //document.location.href = ffw;
+ alert(ffw);
+ }
+</script>
+</body>
+</html>
\ No newline at end of file
17 years, 4 months
JBoss JBPM SVN: r3508 - jbpm4/trunk/modules/db/src/main/resources/db.properties.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2008-12-22 15:08:53 -0500 (Mon, 22 Dec 2008)
New Revision: 3508
Modified:
jbpm4/trunk/modules/db/src/main/resources/db.properties/db2.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/firebird.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/frontbase.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/hsqldb.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/informix.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/ingres.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/interbase.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/mckoi.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/mssql.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/mysql.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/oracle.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/pointbase.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/postgresql.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/progress.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/sapdb.properties
jbpm4/trunk/modules/db/src/main/resources/db.properties/sybase.properties
Log:
reformed all db properties file variables
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/db2.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/db2.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/db2.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,9 +1,9 @@
hibernate.dialect=org.hibernate.dialect.DB2Dialect
# fetch driver from http://www-128.ibm.com/developerworks/db2/downloads/jcc/
hibernate.connection.driver_class=com.ibm.db2.jcc.DB2Driver
-hibernate.connection.url=jdbc:db2://localhost:50000/jbpm
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.url=jdbc:db2://${jdbc.server}:50000/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/firebird.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/firebird.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/firebird.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,9 +1,9 @@
hibernate.dialect=org.hibernate.dialect.FirebirdDialect
# fetch driver from http://firebird.sourceforge.net/
hibernate.connection.driver_class=org.firebirdsql.jdbc.FBDriver
-hibernate.connection.url=jdbc:firebirdsql:localhost:jbpmtest
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.url=jdbc:firebirdsql:${jdbc.server}:${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/frontbase.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/frontbase.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/frontbase.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/hsqldb.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/hsqldb.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/hsqldb.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,8 +1,8 @@
hibernate.dialect=org.hibernate.dialect.HSQLDialect
hibernate.connection.driver_class=org.hsqldb.jdbcDriver
-hibernate.connection.url=jdbc:hsqldb:hsql://${jdbc.hsqldb.server}/${jdbc.hsqldb.dbname}
-hibernate.connection.username=${jdbc.hsqldb.username}
-hibernate.connection.password=${jdbc.hsqldb.password}
+hibernate.connection.url=jdbc:hsqldb:hsql://${jdbc.server}/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/informix.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/informix.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/informix.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/ingres.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/ingres.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/ingres.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/interbase.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/interbase.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/interbase.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/mckoi.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/mckoi.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/mckoi.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/mssql.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/mssql.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/mssql.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,9 +1,9 @@
hibernate.dialect=org.hibernate.dialect.SQLServerDialect
# fetch driver from http://msdn.microsoft.com/data/jdbc
hibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driver
-hibernate.connection.url=jdbc:jtds:sqlserver://localhost:1433/jbpmtest
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.url=jdbc:jtds:sqlserver://${jdbc.server}:1433/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.query.substitutions=true 1, false 0
hibernate.cache.use_second_level_cache=true
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/mysql.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/mysql.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/mysql.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,8 +1,8 @@
hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect
hibernate.connection.driver_class=com.mysql.jdbc.Driver
-hibernate.connection.url=jdbc:mysql://[jdbc.server]/[jdbc.dbname]
-hibernate.connection.username=[jdbc.username]
-hibernate.connection.password=[jdbc.password]
+hibernate.connection.url=jdbc:mysql://${jdbc.server}/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/oracle.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/oracle.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/oracle.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -12,5 +12,3 @@
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
-# hibernate.hbm2ddl.auto=create-drop
-
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/pointbase.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/pointbase.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/pointbase.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/postgresql.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/postgresql.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/postgresql.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,9 +1,9 @@
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
# fetch driver from http://jdbc.postgresql.org/
hibernate.connection.driver_class=org.postgresql.Driver
-hibernate.connection.url=jdbc:postgresql://${hibernate.property.server}/${hibernate.property.dbname}
-hibernate.connection.username=${hibernate.property.username}
-hibernate.connection.password=${hibernate.property.password}
+hibernate.connection.url=jdbc:postgresql://${jdbc.server}/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/progress.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/progress.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/progress.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/sapdb.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/sapdb.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/sapdb.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -2,8 +2,8 @@
# fetch driver from http://google.com
hibernate.connection.driver_class=
hibernate.connection.url=
-hibernate.connection.username=username
-hibernate.connection.password=password
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
Modified: jbpm4/trunk/modules/db/src/main/resources/db.properties/sybase.properties
===================================================================
--- jbpm4/trunk/modules/db/src/main/resources/db.properties/sybase.properties 2008-12-22 19:54:18 UTC (rev 3507)
+++ jbpm4/trunk/modules/db/src/main/resources/db.properties/sybase.properties 2008-12-22 20:08:53 UTC (rev 3508)
@@ -1,8 +1,8 @@
hibernate.dialect=org.hibernate.dialect.SybaseDialect
hibernate.connection.driver_class=net.sourceforge.jtds.jdbc.Driver
-hibernate.connection.url=jdbc:jtds:sybase://${jdbc.sybase.server}/${jdbc.sybase.dbname}
-hibernate.connection.username=${jdbc.sybase.username}
-hibernate.connection.password=${jdbc.sybase.password}
+hibernate.connection.url=jdbc:jtds:sybase://${jdbc.server}/${jdbc.dbname}
+hibernate.connection.username=${jdbc.username}
+hibernate.connection.password=${jdbc.password}
hibernate.cache.use_second_level_cache=true
hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider
17 years, 4 months
JBoss JBPM SVN: r3507 - jbpm4/trunk/modules/pvm/src/main/resources.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2008-12-22 14:54:18 -0500 (Mon, 22 Dec 2008)
New Revision: 3507
Modified:
jbpm4/trunk/modules/pvm/src/main/resources/jbpm.pvm.execution.hbm.xml
Log:
removed duplicated index
Modified: jbpm4/trunk/modules/pvm/src/main/resources/jbpm.pvm.execution.hbm.xml
===================================================================
--- jbpm4/trunk/modules/pvm/src/main/resources/jbpm.pvm.execution.hbm.xml 2008-12-22 18:51:33 UTC (rev 3506)
+++ jbpm4/trunk/modules/pvm/src/main/resources/jbpm.pvm.execution.hbm.xml 2008-12-22 19:54:18 UTC (rev 3507)
@@ -32,7 +32,7 @@
cascade="all-delete-orphan"
table="JBPM_TIMER">
<key foreign-key="FK_TMR_EXECUTION">
- <column name="EXECUTION_" index="IDX_TMR_EXECUTION"/>
+ <column name="EXECUTION_" />
</key>
<one-to-many class="org.jbpm.pvm.internal.job.TimerImpl" />
</set>
17 years, 4 months
JBoss JBPM SVN: r3506 - jbpm3/trunk/modules/userguide/src/main/docbook/en/modules.
by do-not-reply@jboss.org
Author: kukeltje
Date: 2008-12-22 13:51:33 -0500 (Mon, 22 Dec 2008)
New Revision: 3506
Modified:
jbpm3/trunk/modules/userguide/src/main/docbook/en/modules/gettingstarted.xml
Log:
Installer is made independent from JBoss AS
Modified: jbpm3/trunk/modules/userguide/src/main/docbook/en/modules/gettingstarted.xml
===================================================================
--- jbpm3/trunk/modules/userguide/src/main/docbook/en/modules/gettingstarted.xml 2008-12-22 17:32:29 UTC (rev 3505)
+++ jbpm3/trunk/modules/userguide/src/main/docbook/en/modules/gettingstarted.xml 2008-12-22 18:51:33 UTC (rev 3506)
@@ -26,10 +26,6 @@
configuration's deploy directory. All jBPM files are centralized inside this <literal>deploy/jbpm</literal>
directory. No other files of your JBoss installation will be touched.
</para>
- <para>If you don't want to install jBPM in JBoss, then you'll have to point the installer to an empty
- temporary directory where it can put those files anyway. This limitation <ulink url="https://jira.jboss.org/jira/browse/JBPM-1814">will be removed
- in the next version [JBPM-1814]</ulink>.
- </para>
<para>You can use your own eclipse (if it is version 3.4+) or
you can use the eclipse that the installer downloaded. To install the graphical process designer in
eclipse, just use the eclipse update mechanism (Help --> Software Updates --> ...) and point it to the
17 years, 4 months