JBoss JBPM SVN: r2824 - jbpm3/branches/jbpm-3.3.0.GA/modules/core.
by do-not-reply@jboss.org
Author: alex.guizar(a)jboss.com
Date: 2008-11-08 19:49:25 -0500 (Sat, 08 Nov 2008)
New Revision: 2824
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
Log:
two more tests passing on sybase
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-09 00:37:24 UTC (rev 2823)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-09 00:49:25 UTC (rev 2824)
@@ -353,9 +353,7 @@
<exclude>org/jbpm/jbpm1755/JBPM1755Test.java</exclude>
<exclude>org/jbpm/jbpm983/JBPM983Test.java</exclude>
<exclude>org/jbpm/job/executor/JobExecutorDbTest.java</exclude>
- <exclude>org/jbpm/logging/exe/LoggingConfigDbTest.java</exclude>
<exclude>org/jbpm/optimisticlocking/LockingTest.java</exclude>
- <exclude>org/jbpm/perf/TasklistEagerLoadingTest.java</exclude>
<exclude>org/jbpm/scheduler/exe/UnsafeSessionUsageTest.java</exclude>
<exclude>org/jbpm/seam/JobExecutorCustomizationTest.java</exclude>
</excludes>
17 years, 5 months
JBoss JBPM SVN: r2823 - in jbpm3/branches/jbpm-3.3.0.GA/modules/core: src/main/resources and 1 other directories.
by do-not-reply@jboss.org
Author: alex.guizar(a)jboss.com
Date: 2008-11-08 19:37:24 -0500 (Sat, 08 Nov 2008)
New Revision: 2823
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/java/org/jbpm/context/exe/CustomVariableStringIdDbTest.java
Log:
revived automatic schema creation, got two more tests running on sybase, verified against hsqldb and mysql as well
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -346,9 +346,7 @@
<exclude>org/jbpm/job/executor/JobExecutorDbTest</exclude>
<!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema -->
<exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
-
- <exclude>org/jbpm/context/exe/CustomVariableLongIdDbTest.java</exclude>
- <exclude>org/jbpm/context/exe/CustomVariableStringIdDbTest.java</exclude>
+
<exclude>org/jbpm/db/DeleteProcessInstanceDbTest.java</exclude>
<exclude>org/jbpm/graph/exe/SubProcessPlusConcurrencyDbTest.java</exclude>
<exclude>org/jbpm/jbpm1072/JBPM1072Test.java</exclude>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -17,11 +17,15 @@
<!-- # common settings # -->
<!-- ################################### -->
+ <!-- Automatic schema creation (begin) -->
+ <property name="hibernate.hbm2ddl.auto">create</property>
+ <!-- Automatic schema creation (end) -->
+
<!-- Simple memory-only cache -->
<property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
<!-- logging properties -->
- <property name="hibernate.format_sql">false</property>
+ <property name="hibernate.format_sql">true</property>
<property name="hibernate.use_sql_comments">true</property>
<!-- ############################################ -->
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -8,8 +8,4 @@
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.connection.password"></property>
<!-- JDBC connection properties (end) -->
-
- <!-- Automatic schema creation (begin) -->
- <property name="hibernate.hbm2ddl.auto">create</property>
- <!-- Automatic schema creation (end) -->
-
\ No newline at end of file
+
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -10,8 +10,3 @@
<property name="hibernate.query.substitutions">true 1, false 0</property>
<!-- JDBC connection properties (end) -->
- <!-- Automatic schema creation (begin) -->
- <property name="hibernate.hbm2ddl.auto">create</property>
- <!-- Automatic schema creation (end) -->
-
-
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -8,8 +8,4 @@
<property name="hibernate.connection.username">${jdbc.postgresql.username}</property>
<property name="hibernate.connection.password">${jdbc.postgresql.password}</property>
<!-- JDBC connection properties (end) -->
-
- <!-- Automatic schema creation (begin) -->
- <property name="hibernate.hbm2ddl.auto">create</property>
- <!-- Automatic schema creation (end) -->
-
\ No newline at end of file
+
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-09 00:37:24 UTC (rev 2823)
@@ -18,9 +18,4 @@
<property name="hibernate.connection.username">${jdbc.sybase.username}</property>
<property name="hibernate.connection.password">${jdbc.sybase.password}</property>
<!-- JDBC connection properties (end) -->
-
- <!-- Automatic schema creation (begin) ===
- <property name="hibernate.hbm2ddl.auto">create</property>
- ==== Automatic schema creation (end) -->
-
- <property name="hibernate.connection.pool_size">20</property>
\ No newline at end of file
+
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/java/org/jbpm/context/exe/CustomVariableStringIdDbTest.java
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/java/org/jbpm/context/exe/CustomVariableStringIdDbTest.java 2008-11-08 23:39:05 UTC (rev 2822)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/java/org/jbpm/context/exe/CustomVariableStringIdDbTest.java 2008-11-09 00:37:24 UTC (rev 2823)
@@ -95,6 +95,5 @@
{
jbpmContext.getGraphSession().deleteProcessDefinition(processDefinition.getId());
}
-
}
-}
\ No newline at end of file
+}
17 years, 5 months
JBoss JBPM SVN: r2822 - in jbpm3/branches/jbpm-3.3.0.GA: modules/core/src/test/resources and 1 other directory.
by do-not-reply@jboss.org
Author: alex.guizar(a)jboss.com
Date: 2008-11-08 18:39:05 -0500 (Sat, 08 Nov 2008)
New Revision: 2822
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml
jbpm3/branches/jbpm-3.3.0.GA/pom.xml
Log:
removed reliance on local driver, refined hibernate logging categories
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml 2008-11-08 23:01:44 UTC (rev 2821)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml 2008-11-08 23:39:05 UTC (rev 2822)
@@ -35,6 +35,15 @@
<category name="org.hibernate">
<priority value="INFO" />
</category>
+ <category name="org.hibernate.SQL">
+ <priority value="DEBUG" />
+ </category>
+ <category name="org.hibernate.type">
+ <priority value="TRACE" />
+ </category>
+ <category name="org.hibernate.connection">
+ <priority value="TRACE" />
+ </category>
<!-- ======================= -->
<!-- Setup the Root category -->
Modified: jbpm3/branches/jbpm-3.3.0.GA/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 23:01:44 UTC (rev 2821)
+++ jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 23:39:05 UTC (rev 2822)
@@ -578,20 +578,17 @@
<sql.type.text>string</sql.type.text>
</properties>
<dependencies>
- <!--
<dependency>
- <groupId>net.sourceforge.jtds</groupId>
- <artifactId>jtds</artifactId>
- <scope>test</scope>
- </dependency>
- -->
- <dependency>
<groupId>com.sybase</groupId>
<artifactId>jconnect</artifactId>
<version>6.0.5</version>
- <systemPath>/opt/sybase/ase1502dev/shared/lib/jconn3.jar</systemPath>
- <scope>system</scope>
+ <scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>net.sourceforge.jtds</groupId>
+ <artifactId>jtds</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<repositories>
<repository>
17 years, 5 months
JBoss JBPM SVN: r2821 - in jbpm3/branches/jbpm-3.3.0.GA/modules/core: src/main/resources and 1 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 18:01:44 -0500 (Sat, 08 Nov 2008)
New Revision: 2821
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml
Log:
Add sybase excludes
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-08 19:11:06 UTC (rev 2820)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml 2008-11-08 23:01:44 UTC (rev 2821)
@@ -288,8 +288,6 @@
<exclude>org/jbpm/seam/JobExecutorCustomizationTest.java</exclude>
<!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema -->
<exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
- <!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema -->
- <exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
</excludes>
</configuration>
</plugin>
@@ -348,6 +346,20 @@
<exclude>org/jbpm/job/executor/JobExecutorDbTest</exclude>
<!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema -->
<exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
+
+ <exclude>org/jbpm/context/exe/CustomVariableLongIdDbTest.java</exclude>
+ <exclude>org/jbpm/context/exe/CustomVariableStringIdDbTest.java</exclude>
+ <exclude>org/jbpm/db/DeleteProcessInstanceDbTest.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/job/executor/JobExecutorDbTest.java</exclude>
+ <exclude>org/jbpm/logging/exe/LoggingConfigDbTest.java</exclude>
+ <exclude>org/jbpm/optimisticlocking/LockingTest.java</exclude>
+ <exclude>org/jbpm/perf/TasklistEagerLoadingTest.java</exclude>
+ <exclude>org/jbpm/scheduler/exe/UnsafeSessionUsageTest.java</exclude>
+ <exclude>org/jbpm/seam/JobExecutorCustomizationTest.java</exclude>
</excludes>
</configuration>
</plugin>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 19:11:06 UTC (rev 2820)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 23:01:44 UTC (rev 2821)
@@ -22,4 +22,5 @@
<!-- Automatic schema creation (begin) ===
<property name="hibernate.hbm2ddl.auto">create</property>
==== Automatic schema creation (end) -->
-
\ No newline at end of file
+
+ <property name="hibernate.connection.pool_size">20</property>
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml 2008-11-08 19:11:06 UTC (rev 2820)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/test/resources/log4j.xml 2008-11-08 23:01:44 UTC (rev 2821)
@@ -33,7 +33,7 @@
<!-- ================ -->
<category name="org.hibernate">
- <priority value="DEBUG" />
+ <priority value="INFO" />
</category>
<!-- ======================= -->
17 years, 5 months
JBoss JBPM SVN: r2820 - in jbpm3/branches/jbpm-3.3.0.GA: modules/core/scripts and 12 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 14:11:06 -0500 (Sat, 08 Nov 2008)
New Revision: 2820
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/jbpm-sybase-ds.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/JcrNodeInstance.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/action/Script.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ExceptionHandler.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Node.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ProcessDefinition.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Transition.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/exe/Comment.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/instantiation/Delegation.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/job/Job.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/logging/log/MessageLog.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/def/Task.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
jbpm3/branches/jbpm-3.3.0.GA/pom.xml
jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example
Log:
Parameterize sql.type.text
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -14,7 +14,7 @@
<project default="concat">
<property name="project.build.directory" value="${basedir}/target"/>
- <property name="project.resources.directory" value="${basedir}/target/classes"/>
+ <property name="build.resources.directory" value="${basedir}/target/classes"/>
<macrodef name="macro-disable">
<attribute name="file" />
@@ -50,11 +50,11 @@
<attribute name="database" />
<sequential>
- <available property="@{database}.properties.available" file="${project.resources.directory}/hibernate.properties.(a){database}.xml"/>
+ <available property="@{database}.properties.available" file="${build.resources.directory}/hibernate.properties.(a){database}.xml"/>
<fail message="hibernate.properties.(a){database}.xml not available" unless="@{database}.properties.available"/>
<condition property="hibernate.mapping.(a){database}.xml" value="hibernate.mapping.(a){database}.xml" else="hibernate.mapping.default.xml">
- <available property="@{database}.mapping.available" file="${project.resources.directory}/hibernate.mapping.(a){database}.xml"/>
+ <available property="@{database}.mapping.available" file="${build.resources.directory}/hibernate.mapping.(a){database}.xml"/>
</condition>
<echo message="Concat hibernate.cfg.(a){database}.xml using hibernate.properties.(a){database}.xml, ${hibernate.mapping.(a){database}.xml}" />
@@ -70,10 +70,10 @@
<hibernate-configuration>
<session-factory>
]]></header>
- <fileset file="${project.resources.directory}/hibernate.properties.(a){database}.xml" />
- <fileset file="${project.resources.directory}/hibernate.common.xml" />
- <fileset file="${project.resources.directory}/${hibernate.mapping.(a){database}.xml}" />
- <fileset file="${project.resources.directory}/hibernate.cache.xml" />
+ <fileset file="${build.resources.directory}/hibernate.properties.(a){database}.xml" />
+ <fileset file="${build.resources.directory}/hibernate.common.xml" />
+ <fileset file="${build.resources.directory}/${hibernate.mapping.(a){database}.xml}" />
+ <fileset file="${build.resources.directory}/hibernate.cache.xml" />
<footer trimleading="yes"><![CDATA[
</session-factory>
</hibernate-configuration>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -13,8 +13,7 @@
<property name="hibernate.dialect">org.hibernate.dialect.SybaseDialect</property>
<!-- JDBC connection properties (begin) -->
- <!-- property name="hibernate.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property -->
- <property name="hibernate.connection.driver_class">com.sybase.jdbc3.jdbc.SybDriver</property>
+ <property name="hibernate.connection.driver_class">${jdbc.sybase.driver}</property>
<property name="hibernate.connection.url">${jdbc.sybase.url}</property>
<property name="hibernate.connection.username">${jdbc.sybase.username}</property>
<property name="hibernate.connection.password">${jdbc.sybase.password}</property>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/jbpm-sybase-ds.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/jbpm-sybase-ds.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/jbpm-sybase-ds.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -5,7 +5,7 @@
<xa-datasource>
<jndi-name>JbpmDS</jndi-name>
- <xa-datasource-class>net.sourceforge.jtds.jdbcx.JtdsDataSource</xa-datasource-class>
+ <xa-datasource-class>${jdbc.sybase.driver}</xa-datasource-class>
<xa-datasource-property name="ServerName">${jdbc.sybase.server}</xa-datasource-property>
<xa-datasource-property name="PortNumber">${jdbc.sybase.port}</xa-datasource-property>
<xa-datasource-property name="DatabaseName">${jdbc.sybase.database}</xa-datasource-property>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/JcrNodeInstance.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/JcrNodeInstance.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/JcrNodeInstance.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -17,7 +17,7 @@
<property name="repository" column="LONGIDCLASS_" />
<property name="workspace" column="STRINGIDCLASS_" />
- <property name="path" column="STRINGVALUE_" type="text" />
+ <property name="path" column="STRINGVALUE_" type="${sql.type.text}" />
</subclass>
</hibernate-mapping>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -8,6 +8,6 @@
<subclass name="org.jbpm.context.exe.variableinstance.StringInstance"
extends="org.jbpm.context.exe.VariableInstance"
discriminator-value="S">
- <property name="value" type="text" column="STRINGVALUE_"/>
+ <property name="value" type="${sql.type.text}" column="STRINGVALUE_"/>
</subclass>
</hibernate-mapping>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -9,8 +9,8 @@
<subclass name="org.jbpm.context.log.variableinstance.StringUpdateLog"
extends="org.jbpm.context.log.VariableUpdateLog"
discriminator-value="U">
- <property name="oldValue" column="OLDSTRINGVALUE_" type="text"/>
- <property name="newValue" column="NEWSTRINGVALUE_" type="text"/>
+ <property name="oldValue" column="OLDSTRINGVALUE_" type="${sql.type.text}"/>
+ <property name="newValue" column="NEWSTRINGVALUE_" type="${sql.type.text}"/>
</subclass>
</hibernate-mapping>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/action/Script.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/action/Script.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/action/Script.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -7,7 +7,7 @@
<subclass name="org.jbpm.graph.action.Script"
discriminator-value="S"
extends="org.jbpm.graph.def.Action">
- <property name="expression" column="EXPRESSION_" type="text" />
+ <property name="expression" column="EXPRESSION_" type="${sql.type.text}" />
<set name="variableAccesses" cascade="all">
<key column="SCRIPT_" foreign-key="FK_VARACC_SCRIPT"/>
<one-to-many class="org.jbpm.context.def.VariableAccess" />
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ExceptionHandler.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ExceptionHandler.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ExceptionHandler.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -9,7 +9,7 @@
<id name="id" column="ID_"><generator class="native" /></id>
<property name="exceptionClassName" column="EXCEPTIONCLASSNAME_"
- type="text" />
+ type="${sql.type.text}" />
<any name="graphElement" id-type="long" meta-type="char">
<meta-value value="A" class="org.jbpm.taskmgmt.def.Task"/>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Node.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Node.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Node.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -25,7 +25,7 @@
<!-- GRAPHELEMENT -->
<property name="name" column="NAME_"/>
- <property name="description" column="DESCRIPTION_" type="text"/>
+ <property name="description" column="DESCRIPTION_" type="${sql.type.text}"/>
<many-to-one name="processDefinition"
column="PROCESSDEFINITION_"
foreign-key="FK_NODE_PROCDEF"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ProcessDefinition.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ProcessDefinition.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/ProcessDefinition.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -13,7 +13,7 @@
<!-- GRAPHELEMENT -->
<!-- base class fields are mapped here -->
<property name="name" column="NAME_" />
- <property name="description" column="DESCRIPTION_" type="text"/>
+ <property name="description" column="DESCRIPTION_" type="${sql.type.text}"/>
<map name="events" cascade="all">
<key column="PROCESSDEFINITION_" foreign-key="FK_EVENT_PROCDEF" />
<index column="EVENTTYPE_" type="string"/>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Transition.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Transition.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/def/Transition.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -10,7 +10,7 @@
<!-- GRAPHELEMENT -->
<property name="name" column="NAME_"/>
- <property name="description" column="DESCRIPTION_" type="text"></property>
+ <property name="description" column="DESCRIPTION_" type="${sql.type.text}"></property>
<many-to-one name="processDefinition"
column="PROCESSDEFINITION_"
foreign-key="FK_TRANS_PROCDEF"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/exe/Comment.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/exe/Comment.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/exe/Comment.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -11,7 +11,7 @@
<property name="actorId" column="ACTORID_"/>
<property name="time" column="TIME_"/>
- <property name="message" column="MESSAGE_" type="text"/>
+ <property name="message" column="MESSAGE_" type="${sql.type.text}"/>
<many-to-one name="token"
column="TOKEN_"
foreign-key="FK_COMMENT_TOKEN"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/graph/log/ActionLog.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -10,7 +10,7 @@
extends="org.jbpm.logging.log.CompositeLog"
discriminator-value="A">
- <property name="exception" column="EXCEPTION_" type="text"/>
+ <property name="exception" column="EXCEPTION_" type="${sql.type.text}"/>
<many-to-one name="action"
column="ACTION_"
class="org.jbpm.graph.def.Action"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/instantiation/Delegation.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/instantiation/Delegation.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/instantiation/Delegation.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -8,8 +8,8 @@
table="JBPM_DELEGATION">
<id name="id" column="ID_"><generator class="native" /></id>
- <property name="className" column="CLASSNAME_" type="text" />
- <property name="configuration" column="CONFIGURATION_" type="text" />
+ <property name="className" column="CLASSNAME_" type="${sql.type.text}" />
+ <property name="configuration" column="CONFIGURATION_" type="${sql.type.text}" />
<property name="configType" column="CONFIGTYPE_"/>
<many-to-one name="processDefinition"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/job/Job.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/job/Job.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/job/Job.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -35,7 +35,7 @@
<property name="isExclusive" column="ISEXCLUSIVE_" />
<property name="lockOwner" column="LOCKOWNER_" />
<property name="lockTime" column="LOCKTIME_" />
- <property name="exception" column="EXCEPTION_" type="text"/>
+ <property name="exception" column="EXCEPTION_" type="${sql.type.text}"/>
<property name="retries" column="RETRIES_" />
</class>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/logging/log/MessageLog.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/logging/log/MessageLog.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/logging/log/MessageLog.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -9,7 +9,7 @@
<subclass name="org.jbpm.logging.log.MessageLog"
extends="org.jbpm.logging.log.ProcessLog"
discriminator-value="M">
- <property name="message" column="MESSAGE_" type="text"/>
+ <property name="message" column="MESSAGE_" type="${sql.type.text}"/>
</subclass>
</hibernate-mapping>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/def/Task.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/def/Task.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/def/Task.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -12,7 +12,7 @@
<!-- GRAPHELEMENT -->
<property name="name" column="NAME_" />
- <property name="description" column="DESCRIPTION_" type="text"/>
+ <property name="description" column="DESCRIPTION_" type="${sql.type.text}"/>
<many-to-one name="processDefinition"
column="PROCESSDEFINITION_"
foreign-key="FK_TASK_PROCDEF"
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -14,7 +14,7 @@
<version name="version" column="VERSION_" />
<property name="name" column="NAME_" />
- <property name="description" column="DESCRIPTION_" type="text"/>
+ <property name="description" column="DESCRIPTION_" type="${sql.type.text}"/>
<property name="actorId" column="ACTORID_" index="IDX_TASK_ACTORID"/>
<property name="create" column="CREATE_" />
<property name="start" column="START_" />
Modified: jbpm3/branches/jbpm-3.3.0.GA/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 19:11:06 UTC (rev 2820)
@@ -479,6 +479,7 @@
</activation>
<properties>
<database>hsqldb</database>
+ <sql.type.text>text</sql.type.text>
</properties>
<dependencies>
<dependency>
@@ -501,6 +502,9 @@
<value>hsqldb</value>
</property>
</activation>
+ <properties>
+ <sql.type.text>text</sql.type.text>
+ </properties>
<dependencies>
<dependency>
<groupId>hsqldb</groupId>
@@ -522,6 +526,9 @@
<value>mysql</value>
</property>
</activation>
+ <properties>
+ <sql.type.text>text</sql.type.text>
+ </properties>
<dependencies>
<dependency>
<groupId>mysql</groupId>
@@ -543,6 +550,9 @@
<value>postgresql</value>
</property>
</activation>
+ <properties>
+ <sql.type.text>text</sql.type.text>
+ </properties>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
@@ -564,12 +574,23 @@
<value>sybase</value>
</property>
</activation>
+ <properties>
+ <sql.type.text>string</sql.type.text>
+ </properties>
<dependencies>
+ <!--
<dependency>
+ <groupId>net.sourceforge.jtds</groupId>
+ <artifactId>jtds</artifactId>
+ <scope>test</scope>
+ </dependency>
+ -->
+ <dependency>
<groupId>com.sybase</groupId>
<artifactId>jconnect</artifactId>
<version>6.0.5</version>
- <scope>test</scope>
+ <systemPath>/opt/sybase/ase1502dev/shared/lib/jconn3.jar</systemPath>
+ <scope>system</scope>
</dependency>
</dependencies>
<repositories>
Modified: jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example 2008-11-08 15:23:32 UTC (rev 2819)
+++ jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example 2008-11-08 19:11:06 UTC (rev 2820)
@@ -27,7 +27,12 @@
<jdbc.postgresql.username>jbpmtest</jdbc.postgresql.username>
<jdbc.postgresql.password></jdbc.postgresql.password>
+ <jdbc.sybase.driver>net.sourceforge.jtds.jdbc.Driver</jdbc.sybase.driver>
+ <jdbc.sybase.url>jdbc:jtds:sybase://localhost:5000/jbpmtest</jdbc.sybase.url>
+
+ <jdbc.sybase.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.sybase.driver>
<jdbc.sybase.url>jdbc:sybase:Tds:localhost:5000/jbpmtest</jdbc.sybase.url>
+
<jdbc.sybase.server>localhost</jdbc.sybase.server>
<jdbc.sybase.port>5000</jdbc.sybase.port>
<jdbc.sybase.database>jbpmtest</jdbc.sybase.database>
17 years, 5 months
JBoss JBPM SVN: r2819 - jbpm3/branches/jbpm-3.3.0.GA/modules/enterprise/jar/src/test/java/org/jbpm/msg/jms.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 10:23:32 -0500 (Sat, 08 Nov 2008)
New Revision: 2819
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/enterprise/jar/src/test/java/org/jbpm/msg/jms/JmsMessageTest.java
Log:
[JBPM-1811] JmsMessageTest fails intermitently on HSQLDB
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/enterprise/jar/src/test/java/org/jbpm/msg/jms/JmsMessageTest.java
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/enterprise/jar/src/test/java/org/jbpm/msg/jms/JmsMessageTest.java 2008-11-08 15:12:05 UTC (rev 2818)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/enterprise/jar/src/test/java/org/jbpm/msg/jms/JmsMessageTest.java 2008-11-08 15:23:32 UTC (rev 2819)
@@ -60,7 +60,8 @@
return new IntegrationTestSetup(JmsMessageTest.class, "enterprise-test.war");
}
- protected void setUp() throws Exception {
+ protected void setUp() throws Exception
+ {
if (commandServiceHome == null) {
Context initialContext = new InitialContext();
try {
@@ -74,13 +75,15 @@
log.info("### " + getName() + " started ###");
}
- protected void tearDown() throws Exception {
+ protected void tearDown() throws Exception
+ {
log.info("### " + getName() + " done ###");
commandService = null;
EventCallback.clear();
}
- public void testAsyncNode() {
+ public void testAsyncNode()
+ {
deployProcess("<process-definition name='node'>"
+ " <event type='process-end'>"
+ " <action expression='#{eventCallback.processEnd}'/>"
@@ -95,10 +98,11 @@
+ "</process-definition>");
long processId = launchProcess("node").getId();
EventCallback.waitForEvent(Event.EVENTTYPE_PROCESS_END);
- assertTrue(hasProcessEnded(processId));
+ assertTrue("Process has ended", hasProcessEnded(processId));
}
- public void testAsyncAction() {
+ public void testAsyncAction()
+ {
deployProcess("<process-definition name='action'>"
+ " <start-state name='start'>"
+ " <transition to='a' />"
@@ -120,10 +124,11 @@
EventCallback.waitForEvent(Event.EVENTTYPE_NODE_ENTER);
EventCallback.waitForEvent(Event.EVENTTYPE_NODE_LEAVE);
EventCallback.waitForEvent(Event.EVENTTYPE_TRANSITION);
- assertTrue(hasProcessEnded(processId));
+ assertTrue("Process has ended", hasProcessEnded(processId));
}
- public void testAsyncSequence() {
+ public void testAsyncSequence()
+ {
deployProcess("<process-definition name='sequence'>"
+ " <event type='process-end'>"
+ " <action expression='#{eventCallback.processEnd}'/>"
@@ -150,10 +155,11 @@
+ "</process-definition>");
long processId = launchProcess("sequence").getId();
EventCallback.waitForEvent(Event.EVENTTYPE_PROCESS_END);
- assertTrue(hasProcessEnded(processId));
+ assertTrue("Process has ended", hasProcessEnded(processId));
}
- public void testAsyncFork() {
+ public void testAsyncFork() throws Exception
+ {
deployProcess("<process-definition name='fork'>"
+ " <event type='process-end'>"
+ " <action expression='#{eventCallback.processEnd}'/>"
@@ -190,10 +196,12 @@
+ "</process-definition>");
long processId = launchProcess("fork").getId();
EventCallback.waitForEvent(Event.EVENTTYPE_PROCESS_END);
+ Thread.sleep(1000);
assertTrue("Process has ended", hasProcessEnded(processId));
}
- public void testAsyncExecutions() {
+ public void testAsyncExecutions()
+ {
deployProcess("<process-definition name='execution'>"
+ " <event type='process-end'>"
+ " <action expression='#{eventCallback.processEnd}' />"
17 years, 5 months
JBoss JBPM SVN: r2818 - in jbpm3/branches/jbpm-3.3.0.GA/modules: db and 2 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 10:12:05 -0500 (Sat, 08 Nov 2008)
New Revision: 2818
Added:
jbpm3/branches/jbpm-3.3.0.GA/modules/db/src/main/resources/log4j.xml
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/java/org/jbpm/ant/JbpmSchemaTask.java
jbpm3/branches/jbpm-3.3.0.GA/modules/db/pom.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/db/scripts/antrun-jbpmschema.xml
Log:
Add logging to schema creation
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/java/org/jbpm/ant/JbpmSchemaTask.java
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/java/org/jbpm/ant/JbpmSchemaTask.java 2008-11-08 14:54:36 UTC (rev 2817)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/java/org/jbpm/ant/JbpmSchemaTask.java 2008-11-08 15:12:05 UTC (rev 2818)
@@ -36,18 +36,17 @@
public class JbpmSchemaTask extends Task
{
+ String jbpmCfg;
+ String hibernateCfg;
+ String hibernateProperties;
- String jbpmCfg = null;
- String hibernateCfg = null;
- String hibernateProperties = null;
+ boolean quiet;
+ boolean text;
+ String output;
+ String delimiter;
- boolean quiet = false;
- boolean text = false;
- String output = null;
- String delimiter = null;
+ String actions;
- String actions = null;
-
public void execute() throws BuildException
{
if (actions == null)
@@ -127,9 +126,6 @@
while (tokenizer.hasMoreTokens())
{
String action = tokenizer.nextToken();
- System.out.println("##########################################################");
- System.out.println("# " + action + " schema: " + output);
- System.out.println("##########################################################");
if ("drop".equalsIgnoreCase(action))
{
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/db/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/db/pom.xml 2008-11-08 14:54:36 UTC (rev 2817)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/db/pom.xml 2008-11-08 15:12:05 UTC (rev 2818)
@@ -42,6 +42,11 @@
<classifier>config</classifier>
<version>${version}</version>
</dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <scope>runtime</scope>
+ </dependency>
</dependencies>
<!-- Plugins -->
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/db/scripts/antrun-jbpmschema.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/db/scripts/antrun-jbpmschema.xml 2008-11-08 14:54:36 UTC (rev 2817)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/db/scripts/antrun-jbpmschema.xml 2008-11-08 15:12:05 UTC (rev 2818)
@@ -23,24 +23,24 @@
<property name="scriptsdir" value="${basedir}/target/classes" />
<mkdir dir="${scriptsdir}" />
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.db2.sql" jbpmCfg="jbpm/db2.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.derby.sql" jbpmCfg="jbpm/derby.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.firebird.sql" jbpmCfg="jbpm/firebird.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.hsqldb.sql" jbpmCfg="jbpm/hsqldb.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.ingres.sql" jbpmCfg="jbpm/ingres.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.interbase.sql" jbpmCfg="jbpm/interbase.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.mckoi.sql" jbpmCfg="jbpm/mckoi.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.mssql.sql" jbpmCfg="jbpm/mssql.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.mysql.sql" jbpmCfg="jbpm/mysql.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.oracle.sql" jbpmCfg="jbpm/oracle.jbpm.cfg.xml" delimiter=";" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.postgresql.sql" jbpmCfg="jbpm/postgresql.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.sapdb.sql" jbpmCfg="jbpm/sapdb.jbpm.cfg.xml" actions="create" text="true"/>
- <jbpmschema output="${scriptsdir}/jbpm.jpdl.sybase.sql" jbpmCfg="jbpm/sybase.jbpm.cfg.xml" actions="create" text="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.db2.sql" jbpmCfg="jbpm/db2.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.derby.sql" jbpmCfg="jbpm/derby.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.firebird.sql" jbpmCfg="jbpm/firebird.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.hsqldb.sql" jbpmCfg="jbpm/hsqldb.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.ingres.sql" jbpmCfg="jbpm/ingres.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.interbase.sql" jbpmCfg="jbpm/interbase.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.mckoi.sql" jbpmCfg="jbpm/mckoi.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.mssql.sql" jbpmCfg="jbpm/mssql.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.mysql.sql" jbpmCfg="jbpm/mysql.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.oracle.sql" jbpmCfg="jbpm/oracle.jbpm.cfg.xml" delimiter=";" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.postgresql.sql" jbpmCfg="jbpm/postgresql.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.sapdb.sql" jbpmCfg="jbpm/sapdb.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
+ <jbpmschema output="${scriptsdir}/jbpm.jpdl.sybase.sql" jbpmCfg="jbpm/sybase.jbpm.cfg.xml" actions="create" text="true" quiet="true"/>
<!--[JBPM-1813] Fix create schema generation -->
- <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.informix.sql" jbpmCfg="jbpm/informix.jbpm.cfg.xml" actions="create" text="true"/-->
- <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.pointbase.sql" jbpmCfg="jbpm/pointbase.jbpm.cfg.xml" actions="create" text="true"/-->
- <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.progress.sql" jbpmCfg="jbpm/progress.jbpm.cfg.xml" actions="create" text="true"/-->
+ <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.informix.sql" jbpmCfg="jbpm/informix.jbpm.cfg.xml" actions="create" text="true" quiet="true"/-->
+ <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.pointbase.sql" jbpmCfg="jbpm/pointbase.jbpm.cfg.xml" actions="create" text="true" quiet="true"/-->
+ <!--jbpmschema output="${scriptsdir}/jbpm.jpdl.progress.sql" jbpmCfg="jbpm/progress.jbpm.cfg.xml" actions="create" text="true" quiet="true"/-->
</target>
</project>
Added: jbpm3/branches/jbpm-3.3.0.GA/modules/db/src/main/resources/log4j.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/db/src/main/resources/log4j.xml (rev 0)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/db/src/main/resources/log4j.xml 2008-11-08 15:12:05 UTC (rev 2818)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+ <!-- ================================= -->
+ <!-- Preserve messages in a local file -->
+ <!-- ================================= -->
+
+ <appender name="FILE" class="org.apache.log4j.FileAppender">
+ <param name="File" value="./target/jbpmschema.log"/>
+ <param name="Append" value="false"/>
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d %-5p [%c] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ============================== -->
+ <!-- Append messages to the console -->
+ <!-- ============================== -->
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <param name="Target" value="System.out" />
+ <param name="Threshold" value="INFO" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{1}] %m%n" />
+ </layout>
+ </appender>
+
+ <!-- ================ -->
+ <!-- Limit categories -->
+ <!-- ================ -->
+
+ <category name="org.hibernate">
+ <priority value="DEBUG" />
+ </category>
+
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+ <!--appender-ref ref="CONSOLE"/-->
+ <appender-ref ref="FILE"/>
+ </root>
+
+</log4j:configuration>
Property changes on: jbpm3/branches/jbpm-3.3.0.GA/modules/db/src/main/resources/log4j.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
17 years, 5 months
JBoss JBPM SVN: r2817 - in jbpm3/branches/jbpm-3.3.0.GA/modules/core: src/main/resources and 1 other directory.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 09:54:36 -0500 (Sat, 08 Nov 2008)
New Revision: 2817
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
Log:
Move auto create from common to respective dbs
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/scripts/antrun-jbpm-config.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -16,10 +16,36 @@
<property name="project.build.directory" value="${basedir}/target"/>
<property name="project.resources.directory" value="${basedir}/target/classes"/>
- <!--
- macrodef: macro-database-cfg
- Concatenates the various db specific hibernate files to produce hibernate.cfg.[database].xml
- -->
+ <macrodef name="macro-disable">
+ <attribute name="file" />
+ <attribute name="section" />
+ <sequential>
+ <replace file="@{file}" summary="true">
+ <replacetoken><![CDATA[<!-- ]]>@{section}<![CDATA[ (begin) -->]]></replacetoken>
+ <replacevalue><![CDATA[<!-- ]]>@{section}<![CDATA[ (begin) ===]]></replacevalue>
+ </replace>
+ <replace file="@{file}" summary="true">
+ <replacetoken><![CDATA[<!-- ]]>@{section}<![CDATA[ (end) -->]]></replacetoken>
+ <replacevalue><![CDATA[==== ]]>@{section}<![CDATA[ (end) -->]]></replacevalue>
+ </replace>
+ </sequential>
+ </macrodef>
+
+ <macrodef name="macro-enable">
+ <attribute name="file" />
+ <attribute name="section" />
+ <sequential>
+ <replace file="@{file}" summary="true">
+ <replacetoken><![CDATA[<!-- ]]>@{section}<![CDATA[ (begin) ===]]></replacetoken>
+ <replacevalue><![CDATA[<!-- ]]>@{section}<![CDATA[ (begin) -->]]></replacevalue>
+ </replace>
+ <replace file="@{file}" summary="true">
+ <replacetoken><![CDATA[==== ]]>@{section}<![CDATA[ (end) -->]]></replacetoken>
+ <replacevalue><![CDATA[<!-- ]]>@{section}<![CDATA[ (end) -->]]></replacevalue>
+ </replace>
+ </sequential>
+ </macrodef>
+
<macrodef name="macro-database-cfg">
<attribute name="database" />
<sequential>
@@ -56,18 +82,13 @@
</sequential>
</macrodef>
- <!--
- Target: concat
- Invokes the database config macro for all supported databases
- -->
- <target name="concat">
-
+ <target name="concat" >
<macro-database-cfg database="hsqldb"/>
<macro-database-cfg database="mysql"/>
<macro-database-cfg database="postgresql"/>
<macro-database-cfg database="sybase"/>
-
<echo message="Copy hibernate.cfg.${database}.xml to hibernate.cfg.xml" />
<copy file="${project.build.directory}/classes/hibernate.cfg.${database}.xml" tofile="${project.build.directory}/classes/hibernate.cfg.xml"/>
</target>
+
</project>
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -17,10 +17,6 @@
<!-- # common settings # -->
<!-- ################################### -->
- <!-- Automatic schema creation (begin) -->
- <property name="hibernate.hbm2ddl.auto">create</property>
- <!-- Automatic schema creation (end) -->
-
<!-- Simple memory-only cache -->
<property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.hsqldb.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -8,3 +8,8 @@
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.connection.password"></property>
<!-- JDBC connection properties (end) -->
+
+ <!-- Automatic schema creation (begin) -->
+ <property name="hibernate.hbm2ddl.auto">create</property>
+ <!-- Automatic schema creation (end) -->
+
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.mysql.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -9,3 +9,9 @@
<property name="hibernate.connection.password">${jdbc.mysql.password}</property>
<property name="hibernate.query.substitutions">true 1, false 0</property>
<!-- JDBC connection properties (end) -->
+
+ <!-- Automatic schema creation (begin) -->
+ <property name="hibernate.hbm2ddl.auto">create</property>
+ <!-- Automatic schema creation (end) -->
+
+
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.postgresql.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -8,3 +8,8 @@
<property name="hibernate.connection.username">${jdbc.postgresql.username}</property>
<property name="hibernate.connection.password">${jdbc.postgresql.password}</property>
<!-- JDBC connection properties (end) -->
+
+ <!-- Automatic schema creation (begin) -->
+ <property name="hibernate.hbm2ddl.auto">create</property>
+ <!-- Automatic schema creation (end) -->
+
\ No newline at end of file
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 14:19:48 UTC (rev 2816)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 14:54:36 UTC (rev 2817)
@@ -20,3 +20,7 @@
<property name="hibernate.connection.password">${jdbc.sybase.password}</property>
<!-- JDBC connection properties (end) -->
+ <!-- Automatic schema creation (begin) ===
+ <property name="hibernate.hbm2ddl.auto">create</property>
+ ==== Automatic schema creation (end) -->
+
\ No newline at end of file
17 years, 5 months
JBoss JBPM SVN: r2816 - in jbpm3/branches/jbpm-3.3.0.GA: modules/core/src/main/resources and 1 other directory.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-11-08 09:19:48 -0500 (Sat, 08 Nov 2008)
New Revision: 2816
Modified:
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
jbpm3/branches/jbpm-3.3.0.GA/pom.xml
jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example
Log:
Restore use of jConnect
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-08 13:17:50 UTC (rev 2815)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.common.xml 2008-11-08 14:19:48 UTC (rev 2816)
@@ -35,4 +35,4 @@
<!-- Additional mappings defined per module go here -->
<mapping resource="hibernate.extra.hbm.xml" />
<mapping resource="hibernate.identity.hbm.xml" />
-
\ No newline at end of file
+
Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 13:17:50 UTC (rev 2815)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/src/main/resources/hibernate.properties.sybase.xml 2008-11-08 14:19:48 UTC (rev 2816)
@@ -13,7 +13,8 @@
<property name="hibernate.dialect">org.hibernate.dialect.SybaseDialect</property>
<!-- JDBC connection properties (begin) -->
- <property name="hibernate.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
+ <!-- property name="hibernate.connection.driver_class">net.sourceforge.jtds.jdbc.Driver</property -->
+ <property name="hibernate.connection.driver_class">com.sybase.jdbc3.jdbc.SybDriver</property>
<property name="hibernate.connection.url">${jdbc.sybase.url}</property>
<property name="hibernate.connection.username">${jdbc.sybase.username}</property>
<property name="hibernate.connection.password">${jdbc.sybase.password}</property>
Modified: jbpm3/branches/jbpm-3.3.0.GA/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 13:17:50 UTC (rev 2815)
+++ jbpm3/branches/jbpm-3.3.0.GA/pom.xml 2008-11-08 14:19:48 UTC (rev 2816)
@@ -566,11 +566,6 @@
</activation>
<dependencies>
<dependency>
- <groupId>net.sourceforge.jtds</groupId>
- <artifactId>jtds</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>com.sybase</groupId>
<artifactId>jconnect</artifactId>
<version>6.0.5</version>
Modified: jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example 2008-11-08 13:17:50 UTC (rev 2815)
+++ jbpm3/branches/jbpm-3.3.0.GA/profiles.xml.example 2008-11-08 14:19:48 UTC (rev 2816)
@@ -27,12 +27,12 @@
<jdbc.postgresql.username>jbpmtest</jdbc.postgresql.username>
<jdbc.postgresql.password></jdbc.postgresql.password>
- <jdbc.sybase.url>jdbc:jtds:sybase://dev01.qa.atl.jboss.com:4100/jbpmteam</jdbc.sybase.url>
- <jdbc.sybase.server>dev01.qa.atl.jboss.com</jdbc.sybase.server>
- <jdbc.sybase.port>4100</jdbc.sybase.port>
- <jdbc.sybase.database>jbpmteam</jdbc.sybase.database>
- <jdbc.sybase.username>jbpmteam</jdbc.sybase.username>
- <jdbc.sybase.password>jbpmteam</jdbc.sybase.password>
+ <jdbc.sybase.url>jdbc:sybase:Tds:localhost:5000/jbpmtest</jdbc.sybase.url>
+ <jdbc.sybase.server>localhost</jdbc.sybase.server>
+ <jdbc.sybase.port>5000</jdbc.sybase.port>
+ <jdbc.sybase.database>jbpmtest</jdbc.sybase.database>
+ <jdbc.sybase.username>jbpmtest</jdbc.sybase.username>
+ <jdbc.sybase.password>jbpmtest</jdbc.sybase.password>
-->
</properties>
</profile>
17 years, 5 months
JBoss JBPM SVN: r2815 - jbpm3/trunk/modules/distribution.
by do-not-reply@jboss.org
Author: koen.aers(a)jboss.com
Date: 2008-11-08 08:17:50 -0500 (Sat, 08 Nov 2008)
New Revision: 2815
Modified:
jbpm3/trunk/modules/distribution/.classpath
Log:
removed invalid classpath entry : <classpathentry kind="src" path="src/main/java"/>
Modified: jbpm3/trunk/modules/distribution/.classpath
===================================================================
--- jbpm3/trunk/modules/distribution/.classpath 2008-11-08 12:37:46 UTC (rev 2814)
+++ jbpm3/trunk/modules/distribution/.classpath 2008-11-08 13:17:50 UTC (rev 2815)
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
- <classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="target/classes"/>
17 years, 5 months