JBoss JBPM SVN: r5852 - in jbpm4/tags/jbpm-4.2: modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2 and 3 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-30 04:49:25 -0400 (Fri, 30 Oct 2009)
New Revision: 5852
Modified:
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql
jbpm4/tags/jbpm-4.2/modules/pvm/src/main/resources/jbpm.history.hbm.xml
jbpm4/tags/jbpm-4.2/qa/build.xml
jbpm4/tags/jbpm-4.2/qa/upgrade/cfg/logging.properties
Log:
fixed duplicate index generation in hibernate mappings and oracle indexes upgrade
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -311,10 +311,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -339,6 +335,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -317,10 +317,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -349,6 +345,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR (DBID_);
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add index FK_HSUPERT_SUB (SUPERTASK_),
add constraint FK_HSUPERT_SUB
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -310,10 +310,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -338,6 +334,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -310,10 +310,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -338,6 +334,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -9,3 +9,9 @@
drop index IDX_HDETAIL_HACTI;
drop index IDX_HDETAIL_HPROCI;
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -9,3 +9,9 @@
alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HACTI;
alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HPROCI;
+
+ alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HVAR;
+
+ alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -5,3 +5,14 @@
VALUE_ varchar2(255 char),
primary key (KEY_)
);
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
+
+ create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql 2009-10-30 08:49:25 UTC (rev 5852)
@@ -11,3 +11,9 @@
drop index IDX_HDETAIL_HACTI;
drop index IDX_HDETAIL_HPROCI;
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/tags/jbpm-4.2/modules/pvm/src/main/resources/jbpm.history.hbm.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/pvm/src/main/resources/jbpm.history.hbm.xml 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/modules/pvm/src/main/resources/jbpm.history.hbm.xml 2009-10-30 08:49:25 UTC (rev 5852)
@@ -23,23 +23,23 @@
<set name="historyActivityInstances"
cascade="all">
- <key foreign-key="FK_HACTI_HPROCI">
- <column name="HPROCI_" index="IDX_HACTI_HPROCI" />
+ <key foreign-key="none">
+ <column name="HPROCI_" />
</key>
<one-to-many class="HistoryActivityInstanceImpl" />
</set>
<set name="historyVariables"
cascade="all">
- <key foreign-key="FK_HVAR_HPROCI">
- <column name="HPROCI_" index="IDX_HVAR_HPROCI" />
+ <key foreign-key="none">
+ <column name="HPROCI_" />
</key>
<one-to-many class="HistoryVariableImpl" />
</set>
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HPROCI">
+ <key foreign-key="none">
<column name="HPROCI_" />
</key>
<one-to-many class="HistoryDetailImpl" />
@@ -59,7 +59,8 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="none" />
+ foreign-key="FK_HACTI_HPROCI"
+ index="IDX_HACTI_HPROCI" />
<property name="type" column="TYPE_" />
<property name="executionId" column="EXECUTION_" />
@@ -72,7 +73,7 @@
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HACTI">
+ <key foreign-key="none">
<column name="HACTI_" />
</key>
<one-to-many class="HistoryDetailImpl" />
@@ -83,12 +84,12 @@
</subclass>
<subclass name="HistoryTaskInstanceImpl" discriminator-value="task">
- <many-to-one name="historyTask"
- class="HistoryTaskImpl"
- column="HTASK_"
- cascade="all"
- foreign-key="FK_HTI_HTASK"
- index="IDX_HTI_HTASK" />
+ <many-to-one name="historyTask"
+ class="HistoryTaskImpl"
+ column="HTASK_"
+ cascade="all"
+ foreign-key="FK_HTI_HTASK"
+ index="IDX_HTI_HTASK" />
</subclass>
</class>
@@ -111,22 +112,24 @@
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HTASK">
- <column name="HTASK_" index="IDX_HDETAIL_HTASK" />
+ <key foreign-key="none">
+ <column name="HTASK_" />
</key>
<one-to-many class="HistoryDetailImpl" />
</set>
<set name="historyVariables"
cascade="all">
- <key foreign-key="FK_HVAR_HTASK">
- <column name="HTASK_" index="IDX_HVAR_HTASK" />
+ <key foreign-key="none">
+ <column name="HTASK_" />
</key>
<one-to-many class="HistoryVariableImpl" />
</set>
<set name="subTasks" cascade="all-delete-orphan">
- <key column="SUPERTASK_" foreign-key="FK_HSUPERT_SUB" />
+ <key foreign-key="FK_HSUPERT_SUB">
+ <column name="SUPERTASK_" index="IDX_HSUPERT_SUB" />
+ </key>
<one-to-many class="HistoryTaskImpl" />
</set>
@@ -148,18 +151,20 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="none" />
+ foreign-key="FK_HVAR_HPROCI"
+ index="IDX_HVAR_HPROCI" />
<!-- the foreign-key is set on the other side of the relation: see historyVariables above in HistoryTaskImpl -->
<many-to-one name="historyTask"
class="HistoryTaskImpl"
column="HTASK_"
- foreign-key="none" />
+ foreign-key="FK_HVAR_HTASK"
+ index="IDX_HVAR_HTASK" />
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HVAR">
- <column name="HVAR_" index="IDX_HDETAIL_HVAR" />
+ <key foreign-key="none">
+ <column name="HVAR_" />
</key>
<one-to-many class="HistoryDetailImpl" />
</set>
@@ -180,40 +185,40 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="FK_HDET_HPROCI"
+ foreign-key="FK_HDETAIL_HPROCI"
index="IDX_HDET_HPROCI" />
<property name="historyProcessInstanceIndex" column="HPROCIIDX_" />
<many-to-one name="historyActivityInstance"
class="HistoryActivityInstanceImpl"
column="HACTI_"
- foreign-key="FK_HDET_HACTI"
+ foreign-key="FK_HDETAIL_HACTI"
index="IDX_HDET_HACTI" />
<property name="historyActivityInstanceIndex" column="HACTIIDX_" />
<many-to-one name="historyTask"
class="HistoryTaskImpl"
column="HTASK_"
- foreign-key="FK_HDET_HTASK"
+ foreign-key="FK_HDETAIL_HTASK"
index="IDX_HDET_HTASK" />
<property name="historyTaskIndex" column="HTASKIDX_" />
<many-to-one name="historyVariable"
class="HistoryVariableImpl"
column="HVAR_"
- foreign-key="FK_HDET_HVAR"
+ foreign-key="FK_HDETAIL_HVAR"
index="IDX_HDET_HVAR" />
<property name="historyVariableIndex" column="HVARIDX_" />
<subclass name="HistoryCommentImpl" discriminator-value="comment">
- <property name="message" column="MESSAGE_" type="text" />
- <list name="replies"
- cascade="all-delete-orphan"
- inverse="false">
- <key column="PARENT_" foreign-key="none" />
- <list-index column="PARENT_IDX_" />
- <one-to-many class="HistoryCommentImpl" />
- </list>
+ <property name="message" column="MESSAGE_" type="text" />
+ <list name="replies"
+ cascade="all-delete-orphan"
+ inverse="false">
+ <key column="PARENT_" foreign-key="none" />
+ <list-index column="PARENT_IDX_" />
+ <one-to-many class="HistoryCommentImpl" />
+ </list>
</subclass>
<subclass name="HistoryProcessInstanceMigrationImpl" discriminator-value="instance-migration">
Modified: jbpm4/tags/jbpm-4.2/qa/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/qa/build.xml 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/qa/build.xml 2009-10-30 08:49:25 UTC (rev 5852)
@@ -184,6 +184,9 @@
<replacefilter token="PVM1" value="PVM2" />
<replacefilter token="pvm1" value="pvm2" />
</replace>
+ <copy todir="upgrade/target/jdbc" overwrite="true" failonerror="false">
+ <fileset dir="${user.home}/.jbpm4/jdbc" />
+ </copy>
<!-- install the jbpm-test-upgrade lib -->
<delete dir="upgrade/target/jbpm-test-upgrade" />
<mkdir dir="upgrade/target/jbpm-test-upgrade" />
Modified: jbpm4/tags/jbpm-4.2/qa/upgrade/cfg/logging.properties
===================================================================
--- jbpm4/tags/jbpm-4.2/qa/upgrade/cfg/logging.properties 2009-10-30 08:44:32 UTC (rev 5851)
+++ jbpm4/tags/jbpm-4.2/qa/upgrade/cfg/logging.properties 2009-10-30 08:49:25 UTC (rev 5852)
@@ -9,7 +9,7 @@
# org.jbpm.pvm.internal.wire.level=FINE
# org.jbpm.pvm.internal.util.level=FINE
-org.hibernate.level=FINE
+org.hibernate.level=INFO
org.hibernate.cfg.SettingsFactory.level=SEVERE
org.hibernate.cfg.HbmBinder.level=SEVERE
# org.hibernate.SQL.level=FINEST
16 years, 6 months
JBoss JBPM SVN: r5851 - in jbpm4/trunk: modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2 and 3 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-30 04:44:32 -0400 (Fri, 30 Oct 2009)
New Revision: 5851
Modified:
jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql
jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql
jbpm4/trunk/modules/pvm/src/main/resources/jbpm.history.hbm.xml
jbpm4/trunk/qa/build.xml
jbpm4/trunk/qa/upgrade/cfg/logging.properties
Log:
fixed duplicate index generation in hibernate mappings and oracle indexes upgrade
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.hsqldb.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -311,10 +311,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -339,6 +335,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.mysql.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -317,10 +317,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -349,6 +345,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR (DBID_);
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add index FK_HSUPERT_SUB (SUPERTASK_),
add constraint FK_HSUPERT_SUB
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.oracle.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -310,10 +310,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -338,6 +334,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/create/jbpm.postgresql.create.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -310,10 +310,6 @@
create index IDX_HDET_HPROCI on JBPM4_HIST_DETAIL (HPROCI_);
- create index IDX_HDETAIL_HVAR on JBPM4_HIST_DETAIL (HVAR_);
-
- create index IDX_HDETAIL_HTASK on JBPM4_HIST_DETAIL (HTASK_);
-
create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
@@ -338,6 +334,8 @@
foreign key (HVAR_)
references JBPM4_HIST_VAR;
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
alter table JBPM4_HIST_TASK
add constraint FK_HSUPERT_SUB
foreign key (SUPERTASK_)
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.hsqldb.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -9,3 +9,9 @@
drop index IDX_HDETAIL_HACTI;
drop index IDX_HDETAIL_HPROCI;
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.mysql.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -9,3 +9,9 @@
alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HACTI;
alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HPROCI;
+
+ alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HVAR;
+
+ alter table JBPM4_HIST_DETAIL drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.oracle.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -5,3 +5,14 @@
VALUE_ varchar2(255 char),
primary key (KEY_)
);
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HDET_HVAR on JBPM4_HIST_DETAIL (HVAR_);
+
+ create index IDX_HDET_HTASK on JBPM4_HIST_DETAIL (HTASK_);
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
+
Modified: jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/distro/src/main/files/install/src/db/upgrade-4.1-to-4.2/jbpm.postgresql.upgrade.sql 2009-10-30 08:44:32 UTC (rev 5851)
@@ -11,3 +11,9 @@
drop index IDX_HDETAIL_HACTI;
drop index IDX_HDETAIL_HPROCI;
+
+ drop index IDX_HDETAIL_HVAR;
+
+ drop index IDX_HDETAIL_HTASK;
+
+ create index IDX_HSUPERT_SUB on JBPM4_HIST_TASK (SUPERTASK_);
Modified: jbpm4/trunk/modules/pvm/src/main/resources/jbpm.history.hbm.xml
===================================================================
--- jbpm4/trunk/modules/pvm/src/main/resources/jbpm.history.hbm.xml 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/modules/pvm/src/main/resources/jbpm.history.hbm.xml 2009-10-30 08:44:32 UTC (rev 5851)
@@ -23,23 +23,23 @@
<set name="historyActivityInstances"
cascade="all">
- <key foreign-key="FK_HACTI_HPROCI">
- <column name="HPROCI_" index="IDX_HACTI_HPROCI" />
+ <key foreign-key="none">
+ <column name="HPROCI_" />
</key>
<one-to-many class="HistoryActivityInstanceImpl" />
</set>
<set name="historyVariables"
cascade="all">
- <key foreign-key="FK_HVAR_HPROCI">
- <column name="HPROCI_" index="IDX_HVAR_HPROCI" />
+ <key foreign-key="none">
+ <column name="HPROCI_" />
</key>
<one-to-many class="HistoryVariableImpl" />
</set>
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HPROCI">
+ <key foreign-key="none">
<column name="HPROCI_" />
</key>
<one-to-many class="HistoryDetailImpl" />
@@ -59,7 +59,8 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="none" />
+ foreign-key="FK_HACTI_HPROCI"
+ index="IDX_HACTI_HPROCI" />
<property name="type" column="TYPE_" />
<property name="executionId" column="EXECUTION_" />
@@ -72,7 +73,7 @@
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HACTI">
+ <key foreign-key="none">
<column name="HACTI_" />
</key>
<one-to-many class="HistoryDetailImpl" />
@@ -83,12 +84,12 @@
</subclass>
<subclass name="HistoryTaskInstanceImpl" discriminator-value="task">
- <many-to-one name="historyTask"
- class="HistoryTaskImpl"
- column="HTASK_"
- cascade="all"
- foreign-key="FK_HTI_HTASK"
- index="IDX_HTI_HTASK" />
+ <many-to-one name="historyTask"
+ class="HistoryTaskImpl"
+ column="HTASK_"
+ cascade="all"
+ foreign-key="FK_HTI_HTASK"
+ index="IDX_HTI_HTASK" />
</subclass>
</class>
@@ -111,22 +112,24 @@
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HTASK">
- <column name="HTASK_" index="IDX_HDETAIL_HTASK" />
+ <key foreign-key="none">
+ <column name="HTASK_" />
</key>
<one-to-many class="HistoryDetailImpl" />
</set>
<set name="historyVariables"
cascade="all">
- <key foreign-key="FK_HVAR_HTASK">
- <column name="HTASK_" index="IDX_HVAR_HTASK" />
+ <key foreign-key="none">
+ <column name="HTASK_" />
</key>
<one-to-many class="HistoryVariableImpl" />
</set>
<set name="subTasks" cascade="all-delete-orphan">
- <key column="SUPERTASK_" foreign-key="FK_HSUPERT_SUB" />
+ <key foreign-key="FK_HSUPERT_SUB">
+ <column name="SUPERTASK_" index="IDX_HSUPERT_SUB" />
+ </key>
<one-to-many class="HistoryTaskImpl" />
</set>
@@ -148,18 +151,20 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="none" />
+ foreign-key="FK_HVAR_HPROCI"
+ index="IDX_HVAR_HPROCI" />
<!-- the foreign-key is set on the other side of the relation: see historyVariables above in HistoryTaskImpl -->
<many-to-one name="historyTask"
class="HistoryTaskImpl"
column="HTASK_"
- foreign-key="none" />
+ foreign-key="FK_HVAR_HTASK"
+ index="IDX_HVAR_HTASK" />
<set name="details"
cascade="all">
- <key foreign-key="FK_HDETAIL_HVAR">
- <column name="HVAR_" index="IDX_HDETAIL_HVAR" />
+ <key foreign-key="none">
+ <column name="HVAR_" />
</key>
<one-to-many class="HistoryDetailImpl" />
</set>
@@ -180,40 +185,40 @@
<many-to-one name="historyProcessInstance"
class="HistoryProcessInstanceImpl"
column="HPROCI_"
- foreign-key="FK_HDET_HPROCI"
+ foreign-key="FK_HDETAIL_HPROCI"
index="IDX_HDET_HPROCI" />
<property name="historyProcessInstanceIndex" column="HPROCIIDX_" />
<many-to-one name="historyActivityInstance"
class="HistoryActivityInstanceImpl"
column="HACTI_"
- foreign-key="FK_HDET_HACTI"
+ foreign-key="FK_HDETAIL_HACTI"
index="IDX_HDET_HACTI" />
<property name="historyActivityInstanceIndex" column="HACTIIDX_" />
<many-to-one name="historyTask"
class="HistoryTaskImpl"
column="HTASK_"
- foreign-key="FK_HDET_HTASK"
+ foreign-key="FK_HDETAIL_HTASK"
index="IDX_HDET_HTASK" />
<property name="historyTaskIndex" column="HTASKIDX_" />
<many-to-one name="historyVariable"
class="HistoryVariableImpl"
column="HVAR_"
- foreign-key="FK_HDET_HVAR"
+ foreign-key="FK_HDETAIL_HVAR"
index="IDX_HDET_HVAR" />
<property name="historyVariableIndex" column="HVARIDX_" />
<subclass name="HistoryCommentImpl" discriminator-value="comment">
- <property name="message" column="MESSAGE_" type="text" />
- <list name="replies"
- cascade="all-delete-orphan"
- inverse="false">
- <key column="PARENT_" foreign-key="none" />
- <list-index column="PARENT_IDX_" />
- <one-to-many class="HistoryCommentImpl" />
- </list>
+ <property name="message" column="MESSAGE_" type="text" />
+ <list name="replies"
+ cascade="all-delete-orphan"
+ inverse="false">
+ <key column="PARENT_" foreign-key="none" />
+ <list-index column="PARENT_IDX_" />
+ <one-to-many class="HistoryCommentImpl" />
+ </list>
</subclass>
<subclass name="HistoryProcessInstanceMigrationImpl" discriminator-value="instance-migration">
Modified: jbpm4/trunk/qa/build.xml
===================================================================
--- jbpm4/trunk/qa/build.xml 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/qa/build.xml 2009-10-30 08:44:32 UTC (rev 5851)
@@ -184,6 +184,9 @@
<replacefilter token="PVM1" value="PVM2" />
<replacefilter token="pvm1" value="pvm2" />
</replace>
+ <copy todir="upgrade/target/jdbc" overwrite="true" failonerror="false">
+ <fileset dir="${user.home}/.jbpm4/jdbc" />
+ </copy>
<!-- install the jbpm-test-upgrade lib -->
<delete dir="upgrade/target/jbpm-test-upgrade" />
<mkdir dir="upgrade/target/jbpm-test-upgrade" />
Modified: jbpm4/trunk/qa/upgrade/cfg/logging.properties
===================================================================
--- jbpm4/trunk/qa/upgrade/cfg/logging.properties 2009-10-30 02:42:35 UTC (rev 5850)
+++ jbpm4/trunk/qa/upgrade/cfg/logging.properties 2009-10-30 08:44:32 UTC (rev 5851)
@@ -9,7 +9,7 @@
# org.jbpm.pvm.internal.wire.level=FINE
# org.jbpm.pvm.internal.util.level=FINE
-org.hibernate.level=FINE
+org.hibernate.level=INFO
org.hibernate.cfg.SettingsFactory.level=SEVERE
org.hibernate.cfg.HbmBinder.level=SEVERE
# org.hibernate.SQL.level=FINEST
16 years, 6 months
JBoss JBPM SVN: r5850 - jbpm3/branches.
by do-not-reply@jboss.org
Author: alex.guizar(a)jboss.com
Date: 2009-10-29 22:42:35 -0400 (Thu, 29 Oct 2009)
New Revision: 5850
Added:
jbpm3/branches/jbpm-3.2.8.GA_JBPM-2617/
Log:
[JBPM-2617] Dynamic timer support pack for DB2
Copied: jbpm3/branches/jbpm-3.2.8.GA_JBPM-2617 (from rev 5849, jbpm3/tags/jbpm-3.2.8.GA)
16 years, 6 months
JBoss JBPM SVN: r5849 - in jbpm4/trunk: modules/api and 75 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 11:51:08 -0400 (Thu, 29 Oct 2009)
New Revision: 5849
Added:
jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd
Modified:
jbpm4/trunk/build.xml
jbpm4/trunk/modules/api/pom.xml
jbpm4/trunk/modules/bpmn/pom.xml
jbpm4/trunk/modules/db/pom.xml
jbpm4/trunk/modules/db/src/main/java/org/jbpm/db/JbpmVersion.java
jbpm4/trunk/modules/devguide/pom.xml
jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch02-Incubation.xml
jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml
jbpm4/trunk/modules/distro/pom.xml
jbpm4/trunk/modules/distro/src/main/files/examples/build.xml
jbpm4/trunk/modules/distro/src/main/files/install/build.xml
jbpm4/trunk/modules/enterprise/pom.xml
jbpm4/trunk/modules/examples/pom.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/activity/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/fork/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/concurrency/graphbased/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/custom/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/conditions/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/expression/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/handler/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/multiple/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/processinstance/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/state/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/eventlistener/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/hql/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/java/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/expression/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/text/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/services/Order.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/sql/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/choice/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/sequence/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessDocument.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessReview.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessDocument.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessReview.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessDocument.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessReview.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignee/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignmenthandler/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/candidates/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/comments/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/notification/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/reminder/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/swimlane/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/variables/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/taskform/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/businesstime/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/event/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/repeat/process.jpdl.xml
jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/transition/process.jpdl.xml
jbpm4/trunk/modules/integration/console/pom.xml
jbpm4/trunk/modules/integration/form-plugin/pom.xml
jbpm4/trunk/modules/integration/graphView-plugin/pom.xml
jbpm4/trunk/modules/integration/pom.xml
jbpm4/trunk/modules/integration/report/pom.xml
jbpm4/trunk/modules/integration/tomcat/pom.xml
jbpm4/trunk/modules/jboss/pom.xml
jbpm4/trunk/modules/jpdl/pom.xml
jbpm4/trunk/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java
jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/extended.jpdl.xml
jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/invalid.jpdl.xml
jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/process.jpdl.xml
jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/valid.jpdl.xml
jbpm4/trunk/modules/log/pom.xml
jbpm4/trunk/modules/migration/pom.xml
jbpm4/trunk/modules/pvm/pom.xml
jbpm4/trunk/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java
jbpm4/trunk/modules/test-base/pom.xml
jbpm4/trunk/modules/test-cactus/pom.xml
jbpm4/trunk/modules/test-cfg/pom.xml
jbpm4/trunk/modules/test-concurrent/pom.xml
jbpm4/trunk/modules/test-db/pom.xml
jbpm4/trunk/modules/test-load/pom.xml
jbpm4/trunk/modules/test-pojo/pom.xml
jbpm4/trunk/modules/test-upgrade/pom.xml
jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess1.jpdl.xml
jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess2.jpdl.xml
jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess3.jpdl.xml
jbpm4/trunk/modules/userguide/pom.xml
jbpm4/trunk/modules/userguide/src/main/docbook/en/modules/ch06-Jpdl.xml
jbpm4/trunk/pom.xml
jbpm4/trunk/qa/build.xml
jbpm4/trunk/qa/upgrade/pom.xml
Log:
updating version to 4.3-SNAPSHOT
Modified: jbpm4/trunk/build.xml
===================================================================
--- jbpm4/trunk/build.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/build.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<property name="linux.browser" value="mozilla" />
<property name="distro.installation.dir" value="c:/software" />
- <property name="distro.version" value="4.2-SNAPSHOT" />
+ <property name="distro.version" value="4.3-SNAPSHOT" />
<property name="distro.jboss.version" value="5.0.0.GA" />
<property name="distro.eclipse" value="c:/downloads/eclipse/eclipse-jee-ganymede-SR1-win32.zip" />
<property name="distro.jboss" value="c:/downloads/jboss/jboss-${distro.jboss.version}.zip" />
Modified: jbpm4/trunk/modules/api/pom.xml
===================================================================
--- jbpm4/trunk/modules/api/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/api/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Added: jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd
===================================================================
--- jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd (rev 0)
+++ jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd 2009-10-29 15:51:08 UTC (rev 5849)
@@ -0,0 +1,1241 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<schema xmlns="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://jbpm.org/4.3/jpdl"
+ xmlns:tns="http://jbpm.org/4.3/jpdl"
+ elementFormDefault="qualified"
+ attributeFormDefault="unqualified">
+
+ <annotation>
+ <documentation>Schema for jPDL 4 process descriptions;
+ element process is the top level element.
+ </documentation>
+ </annotation>
+
+ <!-- ### PROCESS DEFINITION ############################################# -->
+
+ <element name="process">
+ <annotation><documentation>A jPDL process definition description; This
+ is the top level element in a jPDL process file.</documentation></annotation>
+ <complexType>
+ <sequence minOccurs="0" maxOccurs="unbounded">
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:swimlane" minOccurs="0" maxOccurs="unbounded" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:timer" minOccurs="0" maxOccurs="unbounded"/>
+ <group ref="tns:activityGroup" minOccurs="0" maxOccurs="unbounded" />
+ <element ref="tns:migrate-instances" minOccurs="0" maxOccurs="1" />
+ </sequence>
+ <attribute name="name" use="required" type="string">
+ <annotation>
+ <documentation>
+ The process name. Multiple processes can be deployed with the same name, as long as they have a different
+ version.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="key" type="string">
+ <annotation>
+ <documentation>
+ The key can be used to provide a short acronym that will replace the name as the basis for the generated
+ process definition id
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="version" type="int">
+ <annotation>
+ <documentation>
+ Indicates the sequence number of this version for all processes with the same name. By specifying a version
+ automatic deployment can figure out if this process is already deployed or not.
+ </documentation>
+ </annotation>
+ </attribute>
+ <anyAttribute processContents="skip">
+ <annotation><documentation>for extensibility
+ </documentation></annotation>
+ </anyAttribute>
+ </complexType>
+ </element>
+
+ <!-- ### ACTIVITIES ##################################################### -->
+
+ <group name="activityGroup">
+ <choice>
+ <!-- ~~~ START ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="start">
+ <annotation><documentation>Start event
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="form" type="string">
+ <annotation><documentation>the resource name of the form in the
+ deployment.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <!-- ~~~ END ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="end">
+ <annotation><documentation>End event.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="ends" default="process-instance">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="execution"/>
+ <enumeration value="process-instance"/>
+ </restriction>
+ </simpleType>
+ </attribute>
+ <attribute name="state" default="ended" type="string">
+ <annotation><documentation>sets the state of the execution explicitely</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="end-cancel">
+ <annotation><documentation>End cancel event.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="ends" default="process-instance">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="execution"/>
+ <enumeration value="process-instance"/>
+ </restriction>
+ </simpleType>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="end-error">
+ <annotation><documentation>End cancel event.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="ends" default="process-instance">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="execution"/>
+ <enumeration value="process-instance"/>
+ </restriction>
+ </simpleType>
+ </attribute>
+ </complexType>
+ </element>
+
+ <!-- ~~~ STATE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="state">
+ <annotation><documentation>A wait state. When an execution arrives in this
+ activity, the execution will wait until an external trigger is received
+ with execution.signal() or execution.getActivityInstance().signal()
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element name="transition" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <complexContent>
+ <extension base="tns:transitionType">
+ <sequence>
+ <element ref="tns:timer" minOccurs="0" />
+ </sequence>
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </complexType>
+ </element>
+
+ <!-- ~~~ DECISION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="decision">
+ <annotation><documentation>Decision gateway: selects one path out of many alternatives.
+ When an execution comes in, exactly one outgoing transition is taken.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element name="handler" minOccurs="0" type="tns:wireObjectType" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element name="transition" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <complexContent>
+ <extension base="tns:transitionType">
+ <sequence>
+ <element name="condition" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <sequence>
+ <element name="handler" minOccurs="0" type="tns:wireObjectType" />
+ </sequence>
+ <attribute name="expr" type="string">
+ <annotation><documentation>The script text that will be evaluated.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>Identification of the scripting language
+ to use.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ </sequence>
+ </extension>
+ </complexContent>
+ </complexType>
+ <!-- TODO add conditions -->
+ </element>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="expr" type="string">
+ <annotation><documentation>The script that will be evaluated and resolve to
+ the name of the outgoing transition.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>Identification of the scripting language
+ to use for the expr attribute.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <!-- ~~~ FORK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="fork">
+ <annotation><documentation>Spawns multiple concurrent paths of
+ execution.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </complexType>
+ </element>
+
+ <!-- ~~~ JOIN ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="join">
+ <annotation><documentation>Spawns multiple concurrent paths of
+ execution.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attribute name="multiplicity" type="int" />
+ <attribute name="lockmode" default="upgrade">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="none"/>
+ <enumeration value="read"/>
+ <enumeration value="upgrade"/>
+ <enumeration value="upgrade_nowait"/>
+ <enumeration value="write"/>
+ </restriction>
+ </simpleType>
+ </attribute>
+ </complexType>
+ </element>
+
+ <!-- ~~~ SCRIPT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="script">
+ <annotation><documentation>Evaluates a piece of text as a script
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:scriptType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ HQL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="hql">
+ <annotation><documentation>Performs a hibernate query
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:qlType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ SQL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="sql">
+ <annotation><documentation>Performs a hibernate SQL query
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:qlType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ MAIL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="mail">
+ <annotation><documentation>Sends an email
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:mailType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ JAVA ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="java">
+ <annotation><documentation>Invokes a method on a java object.
+ Either the java class is instantiated with reflection, or the
+ java object is fetched from the environment. Then values from the
+ environment are injected into the fields and a method is executed.
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:javaType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ CUSTOM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="custom">
+ <annotation><documentation>Uses a user defined, custom implementation of
+ ActivityBehaviour
+ </documentation></annotation>
+ <complexType>
+ <complexContent>
+ <extension base="tns:wireObjectType">
+ <sequence>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+
+ <!-- ~~~ TASK ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="task">
+ <annotation><documentation>Creates a task in the task component.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <element name="assignment-handler" minOccurs="0" type="tns:wireObjectType" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded"/>
+ <element name="notification" minOccurs="0">
+ <complexType>
+ <attribute name="continue" type="tns:continueType" default="sync" />
+ <attribute name="template" type="tns:templateType" use="optional" />
+ </complexType>
+ </element>
+ <element name="reminder" minOccurs="0">
+ <complexType>
+ <attribute name="duedate" type="string" />
+ <attribute name="repeat" type="string" />
+ <attribute name="continue" type="tns:continueType" default="sync" />
+ <attribute name="template" type="tns:templateType" use="optional"/>
+ </complexType>
+ </element>
+ <element ref="tns:timer" minOccurs="0" maxOccurs="unbounded"/>
+ <element name="transition" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <complexContent>
+ <extension base="tns:transitionType">
+ <sequence>
+ <element ref="tns:timer" minOccurs="0" />
+ </sequence>
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ <attributeGroup ref="tns:assignmentAttributes"/>
+ <attribute name="swimlane" type="string" />
+ <attribute name="form" type="string">
+ <annotation><documentation>the resource name of the form in the
+ deployment.</documentation></annotation>
+ </attribute>
+ <attribute name="duedate" type="string" />
+ <attribute name="on-transition" default="cancel">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="keep"/>
+ <enumeration value="cancel"/>
+ </restriction>
+ </simpleType>
+ </attribute>
+ <attribute name="completion" type="string" default="complete" />
+ </complexType>
+ </element>
+
+ <!-- ~~~ SUB-PROCESS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="sub-process">
+ <annotation><documentation>Waits while a sub process instance is
+ being executed and continues when the sub process instance ends.
+ </documentation></annotation>
+ <complexType>
+ <sequence minOccurs="0" maxOccurs="unbounded">
+ <element name="description" minOccurs="0" type="string" />
+ <element name="parameter-in" type="tns:parameterType" minOccurs="0" maxOccurs="unbounded" />
+ <element name="parameter-out" type="tns:parameterType" minOccurs="0" maxOccurs="unbounded" />
+ <element ref="tns:timer" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>Events on which listeners can be registered.</documentation></annotation>
+ </element>
+ <element name="swimlane-mapping" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <attribute name="swimlane" type="string" use="required" />
+ <attribute name="sub-swimlane" type="string" use="required" />
+ </complexType>
+ </element>
+ <element name="transition" minOccurs="0" maxOccurs="unbounded">
+ <complexType>
+ <complexContent>
+ <extension base="tns:transitionType">
+ <sequence minOccurs="0" maxOccurs="unbounded">
+ <element name="outcome-value">
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ </complexType>
+ </element>
+ </sequence>
+ </extension>
+ </complexContent>
+ </complexType>
+ </element>
+ </sequence>
+ <attribute name="sub-process-id" type="string">
+ <annotation><documentation>Identifies the sub process by the id. This means that a specific
+ version of a process definition is referenced
+ </documentation></annotation>
+ </attribute>
+ <attribute name="sub-process-key" type="string">
+ <annotation><documentation>Identifies the sub process by the key. This means that the latest
+ version of the process definition with the given key is referenced. The latest version
+ of the process is looked up each time the activity executes.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="outcome" type="string">
+ <annotation><documentation>Expression that is evaluated when the sub process
+ instance ends. The value is then used for outcome transition mapping.
+ </documentation></annotation>
+ </attribute>
+ <attributeGroup ref="tns:activityAttributes" />
+ </complexType>
+ </element>
+
+ <!-- ~~~ group ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="group">
+ <annotation><documentation>Scope enclosing a number of activities.
+ </documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ <group ref="tns:activityGroup" minOccurs="0" maxOccurs="unbounded" />
+ <element ref="tns:transition" minOccurs="0" maxOccurs="unbounded" />
+ <element ref="tns:on" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>Events on which listeners can be registered.</documentation></annotation>
+ </element>
+ <element ref="tns:timer" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attributeGroup ref="tns:activityAttributes" />
+ </complexType>
+ </element>
+ </choice>
+ </group>
+
+ <group name="wireObjectGroup">
+ <choice>
+
+ <!-- SPECIAL OBJECTS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="null">
+ <annotation><documentation>the null value
+ </documentation></annotation>
+ </element>
+ <element name="ref">
+ <annotation><documentation>A reference to an object in the current environment</documentation></annotation>
+ <complexType>
+ <attribute name="object" type="string" use="required">
+ <annotation><documentation>The name of the referred object</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ <element name="env-ref">
+ <annotation><documentation>The current environment.
+ </documentation></annotation>
+ </element>
+ <element name="jndi">
+ <annotation><documentation>A lookup from JNDI through the InitialContext
+ </documentation></annotation>
+ <complexType>
+ <attribute name="jndi-name" type="string" use="required" />
+ </complexType>
+ </element>
+
+ <!-- COLLECTIONS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="list">
+ <annotation><documentation>A java.util.List</documentation></annotation>
+ <complexType>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <group ref="tns:wireObjectGroup" />
+ </choice>
+ <attribute name="class" type="string" default="java.util.ArrayList">
+ <annotation><documentation>Implementation class for this list.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="synchronized" type="tns:booleanValueType" default="false">
+ <annotation><documentation>Indicates if this collection should be synchronized
+ with Collections.synchronizedList(List)</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="map">
+ <annotation><documentation>A java.util.Map</documentation></annotation>
+ <complexType>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <element name="entry">
+ <complexType>
+ <choice minOccurs="0">
+ <element name="key" minOccurs="0">
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ </complexType>
+ </element>
+ <element name="value" minOccurs="0">
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ </complexType>
+ </element>
+ </choice>
+ </complexType>
+ </element>
+ </choice>
+ <attribute name="class" type="string" default="java.util.HashMap">
+ <annotation><documentation>Implementation class for this map.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="synchronized" type="tns:booleanValueType" default="false">
+ <annotation><documentation>Indicates if this collection should be synchronized
+ with Collections.synchronizedList(List)</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="set">
+ <annotation><documentation>A java.util.Set
+ </documentation></annotation>
+ <complexType>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <group ref="tns:wireObjectGroup" />
+ </choice>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="class" type="string" default="java.util.HashList">
+ <annotation><documentation>Implementation class for this set.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="synchronized" type="tns:booleanValueType" default="false">
+ <annotation><documentation>Indicates if this collection should be synchronized
+ with Collections.synchronizedSet(Set)</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="properties">
+ <annotation><documentation>A java.util.Properties</documentation></annotation>
+ <complexType>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <element name="property">
+ <complexType>
+ <attribute name="name" type="string" use="required" />
+ <attribute name="value" type="string" use="required" />
+ </complexType>
+ </element>
+ </choice>
+ <attribute name="file" type="string">
+ <annotation><documentation>A file on the file system</documentation></annotation>
+ </attribute>
+ <attribute name="resource" type="string">
+ <annotation><documentation>A file as a resource in the classpath</documentation></annotation>
+ </attribute>
+ <attribute name="url" type="string">
+ <annotation><documentation>the contents is fetched by loading a url</documentation></annotation>
+ </attribute>
+ <attribute name="is-xml" type="tns:booleanValueType">
+ <annotation><documentation>optionally indicates if the content of referenced file in attributes
+ 'file', 'resource' or 'url' is XML. The default is the
+ plain properties format with a space or the equals character (=) separating key and value on
+ each line.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <!-- OBJECT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="object" type="tns:wireObjectType" />
+
+ <!-- BASIC TYPES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
+ <element name="string">
+ <complexType>
+ <attribute name="name">
+ <annotation><documentation>the name of the string object</documentation></annotation>
+ </attribute>
+ <attribute name="value">
+ <annotation><documentation>the actual string value</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="byte">
+ <annotation><documentation>A java.lang.Byte</documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="byte" use="required" />
+ </complexType>
+ </element>
+ <element name="char">
+ <annotation><documentation>A java.lang.Character</documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" use="required">
+ <simpleType>
+ <restriction base="string">
+ <maxLength value="1" />
+ </restriction>
+ </simpleType>
+ </attribute>
+ </complexType>
+ </element>
+ <element name="double">
+ <annotation><documentation>A java.lang.Double</documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="double" use="required" />
+ </complexType>
+ </element>
+ <element name="false">
+ <annotation><documentation>java.lang.Boolean.FALSE
+ </documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ <element name="float">
+ <annotation><documentation>A java.lang.Float
+ </documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="float" use="required" />
+ </complexType>
+ </element>
+ <element name="int">
+ <annotation><documentation>A java.lang.Integer
+ </documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="int" use="required"/>
+ </complexType>
+ </element>
+ <element name="long">
+ <annotation><documentation>A java.lang.Long</documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="long" use="required"/>
+ </complexType>
+ </element>
+ <element name="short">
+ <annotation><documentation>a java.lang.Short
+ </documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ <attribute name="value" type="short" use="required"/>
+ </complexType>
+ </element>
+ <element name="true">
+ <annotation><documentation>java.lang.Boolean.TRUE
+ </documentation></annotation>
+ <complexType>
+ <attribute name="name" type="string">
+ <annotation><documentation>The name of the object. It's optional and serves
+ as an id to refer to this object from other object declarations. This name can
+ also be used lookup the object programmatically.</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+
+ </choice>
+ </group>
+
+ <complexType name="wireObjectType">
+ <annotation><documentation>Any java object that will be created by reflection. .
+ <p>There are three main ways to create an object: by constructor or by a factory
+ object or a static factory method.</p>
+ <p><b>Using the constructor</b>: Then the <code>class</code> attribute must provide the
+ fully qualified class name. In case another constructor then the default is
+ targetted, a <code>constructor</code> child element can be provided.
+ The <code>factory</code> attribute should not be provided for using a constructor.
+ </p>
+ <p><b>Using a factory</b>: Then the <code>factory</code> attribute or one
+ <code>factory</code> element must be provided along with the attribute
+ <code>method</code>.
+ </p>
+ <p><b>Using a static factory method</b>: Then the <code>class</code> and
+ <code>method</code> attributes should be specified. There should be no
+ reference to a <code>factory</code> attribute of element.
+ </p>
+ <p><b>Construction and initialization</b>: all objects (constructor and factory)
+ are build in two phases: construction and initialisation phase. During construction
+ all is done until a pointer is obtained to the object. In initialisation, operations
+ are applied to the object until it is ready to be used. The separation between
+ construction and initialisation is made to allow for bidirectional references. In
+ that case, at least one of both ends can not be fully initialised before it is injected
+ into the other end.
+ </p>
+ <p><b>Operations</b>: after construction, various operations can be applied to objects
+ like e.g. direct field injection, injection through setters, method invocation,
+ enlist with the standard transaction, subscribe the object as a listener to an observable
+ </p>
+ <p><b>Arguments</b>: There are two different places for arguments. The <code>arg</code>
+ elements for the factory method invocation should be placed as child elements under the
+ <code>object</code> element. The <code>arg</code> elements for the constructor should be
+ placed as child elements under the <code>constructor</code> element.
+ </p>
+ </documentation></annotation>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <element name="factory">
+ <annotation><documentation>Contains one element that describes the factory object.</documentation></annotation>
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ </complexType>
+ </element>
+ <element name="constructor">
+ <annotation><documentation>Specifies the arguments to use for a non-default constructor.</documentation></annotation>
+ <complexType>
+ <choice maxOccurs="unbounded">
+ <element name="arg" type="tns:argType" />
+ </choice>
+ </complexType>
+ </element>
+ <element name="arg" type="tns:argType">
+ <annotation><documentation>The factory method arguments.</documentation></annotation>
+ </element>
+ <element name="field">
+ <annotation><documentation>Injects a value into a member field of this object.
+ Exactly one child element must specify the value.
+ </documentation></annotation>
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ <attribute name="name">
+ <annotation><documentation>The member field name</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ <element name="property">
+ <annotation><documentation>Injects a value through a setter method.
+ Exactly one child element must specify the value.
+ </documentation></annotation>
+ <complexType>
+ <group ref="tns:wireObjectGroup" />
+ <attribute name="name">
+ <annotation><documentation>The name of the property (without the 'set' prefix)</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ <element name="invoke">
+ <annotation><documentation>Invokes a method</documentation></annotation>
+ <complexType>
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <element name="arg" type="tns:argType" />
+ </choice>
+ <attribute name="method" type="string" use="required">
+ <annotation><documentation>the method name</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ </choice>
+ <attribute name="class" type="string">
+ <annotation><documentation>The fully qualified class name</documentation></annotation>
+ </attribute>
+ <attribute name="expr" type="string">
+ <annotation><documentation>The class to instantiate.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>The class to instantiate.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="factory" type="string">
+ <annotation><documentation>The name of the factory object</documentation></annotation>
+ </attribute>
+ <attribute name="method" type="string">
+ <annotation><documentation>The factory method name</documentation></annotation>
+ </attribute>
+ <attribute name="auto-wire" type="string">
+ <annotation><documentation>Indicates if the member fields and setter properties
+ should be automatically wired based on matching the property names and types with the
+ object names and types</documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <complexType name="argType">
+ <annotation><documentation>The method arguments.
+ Each 'arg' element should have exactly one child element
+ that represents the value of the argument.
+ </documentation></annotation>
+ <attribute name="type" type="string">
+ <annotation><documentation>The java class name representing
+ the type of the method. This is optional and can be used to
+ indicate the appropriate method in case of method overloading.
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <complexType name="javaType">
+ <sequence>
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <element name="field" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>Field injections from the environment
+ invocation.</documentation></annotation>
+ </element>
+ <element name="arg" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>Method arguments.</documentation></annotation>
+ </element>
+ </sequence>
+ <attribute name="method" type="string" use="required">
+ <annotation><documentation>The name of the method to invoke.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="class" type="string">
+ <annotation><documentation>The class to instantiate.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="expr" type="string">
+ <annotation><documentation>Expression that resolves to the target object
+ on which the method should be invoked.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>The language in which attribute 'expr' is to be
+ resolved.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="var" type="string">
+ <annotation><documentation>The variable name to store the return value
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <complexType name="scriptType">
+ <sequence>
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <element name="text" type="string" minOccurs="0">
+ <annotation><documentation>The content of this expression element
+ is the script text that will be evaluated. This is mutually
+ exclusive with the expression attribute.</documentation></annotation>
+ </element>
+ </sequence>
+ <attribute name="expr" type="string">
+ <annotation><documentation>The script text that will be evaluated. This
+ is mutually exclusive with the expression element.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>Identification of the scripting language
+ to use.</documentation></annotation>
+ </attribute>
+ <attribute name="var" type="string">
+ <annotation><documentation>Name of the variable in which the result
+ of the script evaluation will be stored</documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <complexType name="qlType">
+ <sequence>
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <element name="query" type="string">
+ <annotation><documentation>The query text.</documentation></annotation>
+ </element>
+ <element name="parameters" minOccurs="0">
+ <annotation><documentation>Query parameters.</documentation></annotation>
+ <complexType>
+ <sequence>
+ <group ref="tns:wireObjectGroup" maxOccurs="unbounded" />
+ </sequence>
+ </complexType>
+ </element>
+ </sequence>
+ <attribute name="var" type="string">
+ <annotation><documentation>Name of the variable in which the result
+ of the script evaluation will be stored</documentation></annotation>
+ </attribute>
+ <attribute name="unique" type="string">
+ <annotation><documentation>Does this query return a unique result or a list
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <attributeGroup name="activityAttributes">
+ <attribute name="name" type="string">
+ <annotation><documentation>The id of this activity. The name should be unique
+ in the complete scope of the process.</documentation></annotation>
+ </attribute>
+ <attribute name="g" type="string">
+ <annotation><documentation>Graphical information used by process designer tool.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="continue" default="sync" type="tns:continueType">
+ <annotation><documentation>To specify async continuations.
+ sync is the default.
+ </documentation></annotation>
+ </attribute>
+ </attributeGroup>
+
+ <simpleType name="continueType">
+ <restriction base="string">
+ <enumeration value="async" />
+ <enumeration value="sync" />
+ <enumeration value="exclusive" />
+ </restriction>
+ </simpleType>
+
+
+ <attributeGroup name="assignmentAttributes">
+ <annotation><documentation>the assignment attributes will be used in
+ tasks and swimlanes to specify to whom these respectively are assigned.
+ </documentation></annotation>
+ <attribute name="assignee" type="string">
+ <annotation><documentation>Expression that resolves to a userId referencing
+ the person to which the task or swimlane will be assigned.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="assignee-lang" type="string">
+ <annotation><documentation>Expression language for the assignee attribute.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="candidate-users" type="string">
+ <annotation><documentation>Expression that resolves to a comma separated
+ list of userId's. All the referred people will be candidates for
+ take the task or swimlane.</documentation></annotation>
+ </attribute>
+ <attribute name="candidate-users-lang" type="string">
+ <annotation><documentation>Expression language for the
+ candidate-users attribute.</documentation></annotation>
+ </attribute>
+ <attribute name="candidate-groups" type="string">
+ <annotation><documentation>Resolves to a comma separated list of groupId's.
+ All the referred people will be candidates to
+ take the task or swimlane.</documentation></annotation>
+ </attribute>
+ <attribute name="candidate-groups-lang" type="string">
+ <annotation><documentation>Expression language for the
+ candidate-groups attribute.</documentation></annotation>
+ </attribute>
+ </attributeGroup>
+
+ <element name="swimlane">
+ <annotation><documentation>A process role.</documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="description" minOccurs="0" type="string" />
+ </sequence>
+ <attribute name="name" type="string" use="required" />
+ <attributeGroup ref="tns:assignmentAttributes" />
+ </complexType>
+ </element>
+
+ <complexType name="transitionType">
+ <annotation><documentation>The outgoing transitions. The first in the list
+ will be the default outgoing transition.
+ </documentation></annotation>
+ <sequence>
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <group ref="tns:eventListenerGroup" minOccurs="0" maxOccurs="unbounded" />
+ </sequence>
+ <attribute name="name" type="string">
+ <annotation><documentation>Name of this outgoing transition</documentation></annotation>
+ </attribute>
+ <attribute name="to" type="string">
+ <annotation><documentation>Name of the destination activity of this transition.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="g" type="string">
+ <annotation><documentation>Graphical information used by process designer tool.
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <element name="transition" type="tns:transitionType">
+ <annotation><documentation>A transition from one activity to another.</documentation></annotation>
+ </element>
+
+ <element name="on">
+ <complexType>
+ <sequence>
+ <element ref="tns:timer" minOccurs="0" />
+ <group ref="tns:eventListenerGroup" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>A list of event listeners that will
+ be notified when the event is fired</documentation></annotation>
+ </group>
+ </sequence>
+ <attribute name="event" type="string">
+ <annotation><documentation>The event identification. start, end, take or
+ any other custom event.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="continue" type="tns:continueType" default="sync" />
+ </complexType>
+ </element>
+
+ <complexType name="parameterType">
+ <attribute name="subvar" type="string">
+ <annotation><documentation>The name of the sub process variable.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="expr" type="string">
+ <annotation><documentation>An expression for which the resulting
+ value will be used as value.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="lang" type="string">
+ <annotation><documentation>Language of the expression.
+ </documentation></annotation>
+ </attribute>
+ <attribute name="var" type="string">
+ <annotation><documentation>Name of the process variable
+ in the super process execution..
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+
+
+ <element name="timer">
+ <complexType>
+ <sequence>
+ <annotation><documentation>A list of event listeners that will
+ be notified when the timer fires</documentation></annotation>
+ <element name="description" minOccurs="0" type="string" />
+ <group ref="tns:eventListenerGroup" minOccurs="0" maxOccurs="unbounded">
+ </group>
+ </sequence>
+ <attribute name="duedate" type="string">
+ <annotation><documentation>Timer duedate expression that defines the duedate of this
+ timer relative to the creation time of the timer. E.g. '2 hours' or '4 business days'
+ </documentation></annotation>
+ </attribute>
+ <attribute name="repeat" type="string">
+ <annotation><documentation>Timer duedate expression that defines repeated scheduling
+ relative to the last timer fire event. E.g. '2 hours' or '4 business days'
+ </documentation></annotation>
+ </attribute>
+ <attribute name="duedatetime" type="string">
+ <annotation><documentation>Absolute time in format <code>HH:mm dd/MM/yyyy</code>
+ (see SimpleDateFormat). The format for the absolute time can be customized in the
+ jbpm configuration.
+ </documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <group name="eventListenerGroup">
+ <choice>
+ <element name="event-listener" type="tns:wireObjectType" />
+ <element name="hql" type="tns:qlType" />
+ <element name="sql" type="tns:qlType" />
+ <element name="java" type="tns:javaType" />
+ <element name="script" type="tns:scriptType" />
+ <element name="mail" type="tns:mailType" />
+ </choice>
+ </group>
+
+ <complexType name="mailType">
+ <sequence>
+ <element name="description" minOccurs="0" maxOccurs="unbounded" type="string" />
+ <element name="from" type="tns:mailRecipientType" minOccurs="0" />
+ <element name="to" type="tns:mailRecipientType" minOccurs="0" />
+ <element name="cc" type="tns:mailRecipientType" minOccurs="0" />
+ <element name="bcc" type="tns:mailRecipientType" minOccurs="0" />
+ <element name="subject" type="string" minOccurs="0" />
+ <element name="text" type="string" minOccurs="0" />
+ <element name="html" type="string" minOccurs="0" />
+ <element name="attachments" minOccurs="0" >
+ <complexType>
+ <sequence>
+ <element name="attachment" maxOccurs="unbounded">
+ <complexType>
+ <attribute name="url" type="string">
+ <annotation><documentation>URL reference to the attachment</documentation></annotation>
+ </attribute>
+ <attribute name="resource" type="string">
+ <annotation><documentation>Name of the attachment resource on the classpath</documentation></annotation>
+ </attribute>
+ <attribute name="file" type="string">
+ <annotation><documentation>File reference to the attachment</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ </sequence>
+ </complexType>
+ </element>
+ </sequence>
+ <attribute name="template" type="tns:templateType" />
+ </complexType>
+
+ <complexType name="mailRecipientType">
+ <attribute name="addresses" type="string">
+ <annotation><documentation>list of email address separated by ',' (comma) ';' (semicolon) '|' or whitespace</documentation></annotation>
+ </attribute>
+ <attribute name="users" type="string">
+ <annotation><documentation>list of user ids that are resolved to the email address against configured identity component.
+ user ids should be separated by ',' (comma) ';' (semicolon) '|' or whitespace</documentation></annotation>
+ </attribute>
+ <attribute name="groups" type="string">
+ <annotation><documentation>list of group ids that are resolved to the email address against configured identity component.
+ group ids should be separated by ',' (comma) ';' (semicolon) '|' or whitespace</documentation></annotation>
+ </attribute>
+ </complexType>
+
+ <simpleType name="booleanValueType">
+ <restriction base="string">
+ <enumeration value="true" />
+ <enumeration value="on" />
+ <enumeration value="enabled" />
+ <enumeration value="false" />
+ <enumeration value="off" />
+ <enumeration value="disabled" />
+ </restriction>
+ </simpleType>
+
+
+ <simpleType name="templateType">
+ <annotation><documentation>Reference to the email template</documentation></annotation>
+ <restriction base="string"></restriction>
+ </simpleType>
+
+ <element name="migrate-instances">
+ <annotation><documentation>Information to migrate instances of previously deployed process definitions
+ to the new one</documentation></annotation>
+ <complexType>
+ <sequence>
+ <element name="migration-handler" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>The migration handler specifies the name of a class to be executed while migrating the process instance.</documentation></annotation>
+ <complexType>
+ <attribute name="class"/>
+ </complexType>
+ </element>
+ <element name="activity-mapping" minOccurs="0" maxOccurs="unbounded">
+ <annotation><documentation>One activity mapping will be present for each activity of which the name changed.</documentation></annotation>
+ <complexType>
+ <attribute name="old-name" type="string" use="required">
+ <annotation><documentation>The name of the activity in the previously deployed process definition.</documentation></annotation>
+ </attribute>
+ <attribute name="new-name" type="string" use="required">
+ <annotation><documentation>The name of the activity in the newly deployed process definition</documentation></annotation>
+ </attribute>
+ </complexType>
+ </element>
+ </sequence>
+ <attribute name="action" type="tns:migrationActionType" default="migrate">
+ </attribute>
+ </complexType>
+ </element>
+
+ <simpleType name="migrationActionType">
+ <restriction base="string">
+ <enumeration value="end" />
+ <enumeration value="migrate" />
+ </restriction>
+ </simpleType>
+
+</schema>
Property changes on: jbpm4/trunk/modules/api/src/main/resources/jpdl-4.3.xsd
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: jbpm4/trunk/modules/bpmn/pom.xml
===================================================================
--- jbpm4/trunk/modules/bpmn/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/bpmn/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -37,7 +37,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/db/pom.xml
===================================================================
--- jbpm4/trunk/modules/db/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/db/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/db/src/main/java/org/jbpm/db/JbpmVersion.java
===================================================================
--- jbpm4/trunk/modules/db/src/main/java/org/jbpm/db/JbpmVersion.java 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/db/src/main/java/org/jbpm/db/JbpmVersion.java 2009-10-29 15:51:08 UTC (rev 5849)
@@ -26,7 +26,7 @@
*/
public enum JbpmVersion {
- V_4_0, V_4_1, V_4_2;
+ V_4_0, V_4_1, V_4_2, V_4_3;
public String toString() {
return "4." + ordinal();
Modified: jbpm4/trunk/modules/devguide/pom.xml
===================================================================
--- jbpm4/trunk/modules/devguide/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/devguide/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch02-Incubation.xml
===================================================================
--- jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch02-Incubation.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch02-Incubation.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -155,7 +155,7 @@
<title>The timer transition example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.timer.transition.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="TimerTransition" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TimerTransition" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="guardedWait" />
@@ -213,7 +213,7 @@
<title>The timer event example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.timer.event.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="TimerEvent" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TimerEvent" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="guardedWait" />
@@ -248,7 +248,7 @@
<title>The timer businesstime example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.timer.transition.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="TimerBusinessTime" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TimerBusinessTime" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="guardedWait" />
@@ -285,7 +285,7 @@
<title>The timer repeat example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.timer.event.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="TimerRepeat" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TimerRepeat" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="guardedWait" />
@@ -358,7 +358,7 @@
<title>The simple group example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.group.simple.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="GroupSimple" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="GroupSimple" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="evaluate document" />
@@ -419,7 +419,7 @@
<title>The group timer example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.group.timer.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="GroupTimer" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="GroupTimer" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="evaluate document" />
@@ -480,7 +480,7 @@
<title>The group multiple entries example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.group.multipleentries.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="GroupMultipleEntries" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="GroupMultipleEntries" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="choose strategy" />
@@ -539,7 +539,7 @@
</figure>
<programlisting>
-<process name="GroupConcurrency" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="GroupConcurrency" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="evaluate project" />
Modified: jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml
===================================================================
--- jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -78,7 +78,7 @@
</context-param>
<context-param>
<description>Filesystem directory that is used to store models</description>
- <param-name>fileSystemRootDirectory</param-name><param-value>/home/jbarrez/dev/temp/jbpm-4.2-SNAPSHOT/signavio-repository</param-value>
+ <param-name>fileSystemRootDirectory</param-name><param-value>/home/jbarrez/dev/temp/jbpm-4.3-SNAPSHOT/signavio-repository</param-value>
</context-param>
</programlisting>
</para>
Modified: jbpm4/trunk/modules/distro/pom.xml
===================================================================
--- jbpm4/trunk/modules/distro/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/distro/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/distro/src/main/files/examples/build.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/examples/build.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/distro/src/main/files/examples/build.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -8,7 +8,7 @@
<!-- DEFAULT PROPERTY VALUES -->
<property name="database" value="hsqldb" />
<property name="jbpm.parent.dir" value="../.." />
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.3-SNAPSHOT" />
<property name="jboss.version" value="5.0.0.GA" />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" />
Modified: jbpm4/trunk/modules/distro/src/main/files/install/build.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/build.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/distro/src/main/files/install/build.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -14,7 +14,7 @@
<echo message="mail.smtp.host... ${mail.smtp.host}" />
<!-- INTERNAL PROPERTY DEFAULTS -->
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.3-SNAPSHOT" />
<property name="jbpm.parent.dir" value="../.." />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" />
<property name="hibernate.connection.type" value="jdbc" /> <!-- jdbc | datasource -->
Modified: jbpm4/trunk/modules/enterprise/pom.xml
===================================================================
--- jbpm4/trunk/modules/enterprise/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/enterprise/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/examples/pom.xml
===================================================================
--- jbpm4/trunk/modules/examples/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/activity/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/activity/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/activity/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="AsyncActivity" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="AsyncActivity" xmlns="http://jbpm.org/4.3/jpdl">
<start g="14,28,80,40">
<transition to="generate pdf"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/fork/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/fork/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/async/fork/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="AsyncFork" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="AsyncFork" xmlns="http://jbpm.org/4.3/jpdl">
<start g="22,69,80,40">
<transition to="fork"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/concurrency/graphbased/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/concurrency/graphbased/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/concurrency/graphbased/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="ConcurrencyGraphBased" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="ConcurrencyGraphBased" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,102,48,48">
<transition to="fork"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/custom/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/custom/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/custom/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Custom" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Custom" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="print dots" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/conditions/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/conditions/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/conditions/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="DecisionConditions" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="DecisionConditions" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,102,48,48">
<transition to="evaluate document" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/expression/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/expression/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/expression/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="DecisionExpression" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="DecisionExpression" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,102,48,48">
<transition to="evaluate document"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/handler/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/handler/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/decision/handler/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="DecisionHandler" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="DecisionHandler" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,102,48,48">
<transition to="evaluate document" name=""/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/multiple/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/multiple/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/multiple/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="EndMultiple" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="EndMultiple" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,96,48,48">
<transition to="get return code" name=""/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/processinstance/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/processinstance/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/processinstance/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="EndProcessInstance" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="EndProcessInstance" xmlns="http://jbpm.org/4.3/jpdl">
<start g="85,73,80,40">
<transition to="end" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/state/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/state/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/end/state/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="EndState" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="EndState" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,96,48,48">
<transition to="get return code"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/eventlistener/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/eventlistener/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/eventlistener/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="EventListener" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="EventListener" xmlns="http://jbpm.org/4.3/jpdl">
<on event="start">
<event-listener class="org.jbpm.examples.eventlistener.LogListener">
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/hql/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/hql/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/hql/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Hql" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Hql" xmlns="http://jbpm.org/4.3/jpdl">
<start g="17,20,48,48">
<transition to="get task names" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/java/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/java/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/java/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Java" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Java" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="greet" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/inline/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="InlineMail" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="InlineMail" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,25,80,40">
<transition to="send rectify note" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/mail/template/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TemplateMail" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TemplateMail" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,25,80,40">
<transition to="send rectify note"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/expression/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/expression/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/expression/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="ScriptExpression" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="ScriptExpression" xmlns="http://jbpm.org/4.3/jpdl">
<start g="17,19,48,48">
<transition to="invoke script" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/text/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/text/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/script/text/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="ScriptText" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="ScriptText" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,22,80,40">
<transition to="invoke script" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/services/Order.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/services/Order.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/services/Order.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Order" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Order" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,19,48,48">
<transition to="receive confirmation" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/sql/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/sql/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/sql/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Sql" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Sql" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,20,48,48">
<transition to="get task names" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/choice/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/choice/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/choice/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="StateChoice" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="StateChoice" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,60,48,48">
<transition to="wait for response"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/sequence/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/sequence/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/state/sequence/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="StateSequence" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="StateSequence" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,18,48,48">
<transition to="a" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessDocument.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessDocument.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessDocument.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessDocument" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessDocument" xmlns="http://jbpm.org/4.3/jpdl">
<start g="43,109,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessReview.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessReview.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomeactivity/SubProcessReview.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start g="25,101,48,48">
<transition to="get approval"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessDocument.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessDocument.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessDocument.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessDocument" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessDocument" xmlns="http://jbpm.org/4.3/jpdl">
<start g="36,109,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessReview.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessReview.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/outcomevalue/SubProcessReview.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="get approval"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessDocument.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessDocument.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessDocument.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessDocument" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessDocument" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessReview.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessReview.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/subprocess/variables/SubProcessReview.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="get approval"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignee/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignee/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignee/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskAssignee" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskAssignee" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignmenthandler/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignmenthandler/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/assignmenthandler/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskAssignmentHandler" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskAssignmentHandler" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/candidates/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/candidates/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/candidates/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskCandidates" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskCandidates" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/comments/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/comments/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/comments/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskComments" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskComments" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/notification/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/notification/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/notification/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskNotification" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskNotification" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/reminder/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/reminder/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/reminder/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskReminder" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskReminder" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review"/>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/swimlane/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/swimlane/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/swimlane/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskSwimlane" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskSwimlane" xmlns="http://jbpm.org/4.3/jpdl">
<swimlane name="sales representative"
candidate-groups="sales-dept" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/variables/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/variables/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/task/variables/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TaskVariables" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TaskVariables" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/taskform/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/taskform/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/taskform/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="VacationRequest" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="VacationRequest" xmlns="http://jbpm.org/4.3/jpdl">
<start form="org/jbpm/examples/taskform/request_vacation.ftl" g="16,56,48,48" name="start">
<transition to="verify_request"/>
</start>
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/businesstime/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/businesstime/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/businesstime/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TimerBusinessTime" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TimerBusinessTime" xmlns="http://jbpm.org/4.3/jpdl">
<start g="19,50,48,48">
<transition to="guardedWait" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/event/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/event/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/event/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TimerEvent" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TimerEvent" xmlns="http://jbpm.org/4.3/jpdl">
<start g="19,50,48,48">
<transition to="guardedWait" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/repeat/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/repeat/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/repeat/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TimerRepeat" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TimerRepeat" xmlns="http://jbpm.org/4.3/jpdl">
<start g="19,50,48,48">
<transition to="guardedWait" />
Modified: jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/transition/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/transition/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/examples/src/test/resources/org/jbpm/examples/timer/transition/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="TimerTransition" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="TimerTransition" xmlns="http://jbpm.org/4.3/jpdl">
<start g="19,50,48,48">
<transition to="guardedWait" />
Modified: jbpm4/trunk/modules/integration/console/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/console/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/console/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Properties -->
Modified: jbpm4/trunk/modules/integration/form-plugin/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/form-plugin/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/form-plugin/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/trunk/modules/integration/graphView-plugin/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/graphView-plugin/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/graphView-plugin/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/trunk/modules/integration/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -13,7 +13,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/integration/report/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/report/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/report/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/trunk/modules/integration/tomcat/pom.xml
===================================================================
--- jbpm4/trunk/modules/integration/tomcat/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/integration/tomcat/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Properties -->
Modified: jbpm4/trunk/modules/jboss/pom.xml
===================================================================
--- jbpm4/trunk/modules/jboss/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jboss/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
</parent>
<!-- Properties -->
Modified: jbpm4/trunk/modules/jpdl/pom.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java
===================================================================
--- jbpm4/trunk/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/src/main/java/org/jbpm/jpdl/internal/xml/JpdlParser.java 2009-10-29 15:51:08 UTC (rev 5849)
@@ -93,8 +93,9 @@
public static final String NAMESPACE_JPDL_40 = "http://jbpm.org/4.0/jpdl";
public static final String NAMESPACE_JPDL_42 = "http://jbpm.org/4.2/jpdl";
+ public static final String NAMESPACE_JPDL_43 = "http://jbpm.org/4.3/jpdl";
- public static final String CURRENT_VERSION_JBPM = "4.2";
+ public static final String CURRENT_VERSION_JBPM = "4.3";
public static final String CURRENT_VERSION_NAMESPACE = "http://jbpm.org/"+CURRENT_VERSION_JBPM+"/jpdl";
public static final String CURRENT_VERSION_PROCESS_LANGUAGE_ID = "jpdl-"+CURRENT_VERSION_JBPM;
@@ -102,6 +103,7 @@
static {
SCHEMA_RESOURCES.add("jpdl-4.0.xsd");
SCHEMA_RESOURCES.add("jpdl-4.2.xsd");
+ SCHEMA_RESOURCES.add("jpdl-4.3.xsd");
}
public static final WireParser wireParser = WireParser.getInstance();
Modified: jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/extended.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/extended.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/extended.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Purchase order" xmlns="http://jbpm.org/4.2/jpdl"
+<process name="Purchase order" xmlns="http://jbpm.org/4.3/jpdl"
xmlns:ext="http://jbpm.org/customextensions">
<start>
Modified: jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/invalid.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/invalid.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/invalid.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Purchase order" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Purchase order" xmlns="http://jbpm.org/4.3/jpdl">
<start />
Modified: jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/process.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/process.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/process.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="StateSequence" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="StateSequence" xmlns="http://jbpm.org/4.3/jpdl">
<start g="16,18,48,48">
<transition to="a" />
Modified: jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/valid.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/valid.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/jpdl/src/test/resources/org/jbpm/test/xml/valid.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="Purchase order" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Purchase order" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="a" />
Modified: jbpm4/trunk/modules/log/pom.xml
===================================================================
--- jbpm4/trunk/modules/log/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/log/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/migration/pom.xml
===================================================================
--- jbpm4/trunk/modules/migration/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/migration/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/trunk/modules/pvm/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/pvm/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java
===================================================================
--- jbpm4/trunk/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java 2009-10-29 15:51:08 UTC (rev 5849)
@@ -98,7 +98,7 @@
private static final long serialVersionUID = 1L;
private static final Log log = Log.getLog(ProcessEngineImpl.class.getName());
- public static final String JBPM_LIBRARY_VERSION = "4.2-SNAPSHOT";
+ public static final String JBPM_LIBRARY_VERSION = "4.3-SNAPSHOT";
transient protected String jndiName;
transient protected boolean checkDb = true;
Modified: jbpm4/trunk/modules/test-base/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-base/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-base/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-cactus/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-cactus/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-cactus/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-cfg/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-cfg/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-cfg/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-concurrent/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-concurrent/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-concurrent/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-db/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-db/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-db/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-load/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-load/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-load/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-pojo/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-pojo/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-pojo/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-upgrade/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-upgrade/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-upgrade/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess1.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess1.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess1.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
- <process name="testprocess1" xmlns="http://jbpm.org/4.2/jpdl">
+ <process name="testprocess1" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="theFork"/>
Modified: jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess2.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess2.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess2.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="testprocess2" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="testprocess2" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="testVariable" />
Modified: jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess3.jpdl.xml
===================================================================
--- jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess3.jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/test-upgrade/src/main/resources/testprocess3.jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<process name="testprocess3" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="testprocess3" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="do something important" />
Modified: jbpm4/trunk/modules/userguide/pom.xml
===================================================================
--- jbpm4/trunk/modules/userguide/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/userguide/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/trunk/modules/userguide/src/main/docbook/en/modules/ch06-Jpdl.xml
===================================================================
--- jbpm4/trunk/modules/userguide/src/main/docbook/en/modules/ch06-Jpdl.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/modules/userguide/src/main/docbook/en/modules/ch06-Jpdl.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -14,7 +14,7 @@
</para>
<programlisting><?xml version="1.0" encoding="UTF-8"?>
-<process name="Purchase order" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="Purchase order" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="Verify supplier" />
@@ -189,7 +189,7 @@
<title>A sequence of states</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.state.sequence.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="StateSequence" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="StateSequence" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="a" />
@@ -233,7 +233,7 @@
<title>A choice between state</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.state.choice.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="StateChoice" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="StateChoice" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="wait for response" />
@@ -404,7 +404,7 @@
<title>The decision expression example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.decision.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="DecisionExpression" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="DecisionExpression" xmlns="http://jbpm.org/4.3/jpdl">
<start >
<transition to="evaluate document"/>
@@ -539,7 +539,7 @@
<mediaobject><imageobject><imagedata align="center" fileref="images/process.concurrency.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="ConcurrencyGraphBased" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="ConcurrencyGraphBased" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="fork"/>
@@ -597,7 +597,7 @@
<title>The end event</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.end.processinstance.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="EndProcessInstance" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="EndProcessInstance" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="end" />
@@ -714,7 +714,7 @@
<title>Different end states</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.end.state.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="EndState" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="EndState" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="get return code"/>
@@ -961,7 +961,7 @@
<title>The task assignment handler example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.task.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="TaskAssignmentHandler" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TaskAssignmentHandler" xmlns="http://jbpm.org/4.3/jpdl">
<start g="20,20,48,48">
<transition to="review" />
@@ -1097,7 +1097,7 @@
<mediaobject><imageobject><imagedata align="center" fileref="images/process.task.png"/></imageobject></mediaobject>
</figure>
<para>The task swimlane example has the following process file :</para>
- <programlisting><process name="TaskSwimlane" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="TaskSwimlane" xmlns="http://jbpm.org/4.3/jpdl">
<emphasis role="bold"><swimlane name="sales representative"
candidate-groups="sales-dept" /></emphasis>
@@ -1502,7 +1502,7 @@
<title>The subprocess document example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.task.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="SubProcessDocument" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="SubProcessDocument" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="review" />
@@ -1525,7 +1525,7 @@
<title>The subprocess review example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.subprocess.review.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="get approval"/>
@@ -1614,7 +1614,7 @@
<title>The subprocess review example process for outcome value</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.subprocess.review.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="get approval"/>
@@ -1685,7 +1685,7 @@
<title>The subprocess review example process for outcome activity</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.subprocess.outcomeactivity.review.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="SubProcessReview" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="get approval"/>
@@ -1738,7 +1738,7 @@
the example:
</para>
- <programlisting><process name="Custom" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="Custom" xmlns="http://jbpm.org/4.3/jpdl">
<start >
<transition to="print dots" />
@@ -1875,7 +1875,7 @@
<title>A java task</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.java.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="Java" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="Java" xmlns="http://jbpm.org/4.3/jpdl">
<start >
<transition to="greet" />
@@ -2036,7 +2036,7 @@
<title>The script.expression example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.script.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="ScriptExpression" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="ScriptExpression" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="invoke script" />
@@ -2141,7 +2141,7 @@
<title>The script.text example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.script.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="ScriptText" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="ScriptText" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="invoke script" />
@@ -2231,7 +2231,7 @@
<title>The hql example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.hql.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="Hql" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="Hql" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="get process names" />
@@ -2366,7 +2366,7 @@
<para>
Example usage:
<programlisting>
-<process name="InlineMail" xmlns="http://jbpm.org/4.2/jpdl">
+<process name="InlineMail" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="send birthday reminder note" />
</start>
@@ -2567,7 +2567,7 @@
<title>The event listener example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.eventlistener.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="EventListener" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="EventListener" xmlns="http://jbpm.org/4.3/jpdl">
<on event="start">
<event-listener class="org.jbpm.examples.eventlistener.LogListener">
@@ -2729,7 +2729,7 @@
<title>The async activity example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.async.activity.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="AsyncActivity" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="AsyncActivity" xmlns="http://jbpm.org/4.3/jpdl">
<start>
<transition to="generate pdf"/>
@@ -2798,7 +2798,7 @@
<title>The async fork example process</title>
<mediaobject><imageobject><imagedata align="center" fileref="images/process.async.fork.png"/></imageobject></mediaobject>
</figure>
- <programlisting><process name="AsyncFork" xmlns="http://jbpm.org/4.2/jpdl">
+ <programlisting><process name="AsyncFork" xmlns="http://jbpm.org/4.3/jpdl">
<start >
<transition to="fork"/>
Modified: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -21,7 +21,7 @@
<artifactId>jbpm</artifactId>
<packaging>pom</packaging>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<organization>
<name>JBoss, a division of Red Hat</name>
Modified: jbpm4/trunk/qa/build.xml
===================================================================
--- jbpm4/trunk/qa/build.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/qa/build.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -10,7 +10,7 @@
<!-- CONFIGURABLE PROPERTIES -->
<property name="database" value="hsqldb" />
<property name="identity.component" value="jbpm-built-in" />
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.3-SNAPSHOT" />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" /> <!-- jbpm.home should not be configured. change jbpm.parent.dir instead -->
<property name="jboss.version" value="5.0.0.GA" />
<property name="jboss.distro.dir" value="${jbpm.home}/downloads" />
Modified: jbpm4/trunk/qa/upgrade/pom.xml
===================================================================
--- jbpm4/trunk/qa/upgrade/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
+++ jbpm4/trunk/qa/upgrade/pom.xml 2009-10-29 15:51:08 UTC (rev 5849)
@@ -17,7 +17,7 @@
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-fetch-old-distro</artifactId>
<packaging>jar</packaging>
- <version>4.2-SNAPSHOT</version>
+ <version>4.3-SNAPSHOT</version>
<build>
<plugins>
16 years, 6 months
JBoss JBPM SVN: r5848 - jbpm4/trunk/qa/upgrade.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 10:55:44 -0400 (Thu, 29 Oct 2009)
New Revision: 5848
Modified:
jbpm4/trunk/qa/upgrade/pom.xml
Log:
added oracle driver repository
Modified: jbpm4/trunk/qa/upgrade/pom.xml
===================================================================
--- jbpm4/trunk/qa/upgrade/pom.xml 2009-10-29 14:42:33 UTC (rev 5847)
+++ jbpm4/trunk/qa/upgrade/pom.xml 2009-10-29 14:55:44 UTC (rev 5848)
@@ -68,6 +68,10 @@
<enabled>false</enabled>
</snapshots>
</repository>
+ <repository>
+ <id>qa.jboss.com</id>
+ <url>http://www.qa.jboss.com/jdbc-drivers/maven2</url>
+ </repository>
</repositories>
</project>
16 years, 6 months
JBoss JBPM SVN: r5847 - jbpm4/tags/jbpm-4.2/qa/upgrade.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 10:42:33 -0400 (Thu, 29 Oct 2009)
New Revision: 5847
Modified:
jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml
Log:
added oracle driver repository
Modified: jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
+++ jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml 2009-10-29 14:42:33 UTC (rev 5847)
@@ -68,6 +68,10 @@
<enabled>false</enabled>
</snapshots>
</repository>
+ <repository>
+ <id>qa.jboss.com</id>
+ <url>http://www.qa.jboss.com/jdbc-drivers/maven2</url>
+ </repository>
</repositories>
</project>
16 years, 6 months
JBoss JBPM SVN: r5846 - in jbpm4/tags/jbpm-4.2: modules/api and 32 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 08:51:35 -0400 (Thu, 29 Oct 2009)
New Revision: 5846
Modified:
jbpm4/tags/jbpm-4.2/build.xml
jbpm4/tags/jbpm-4.2/modules/api/pom.xml
jbpm4/tags/jbpm-4.2/modules/bpmn/pom.xml
jbpm4/tags/jbpm-4.2/modules/db/pom.xml
jbpm4/tags/jbpm-4.2/modules/devguide/pom.xml
jbpm4/tags/jbpm-4.2/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml
jbpm4/tags/jbpm-4.2/modules/distro/pom.xml
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/examples/build.xml
jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/build.xml
jbpm4/tags/jbpm-4.2/modules/enterprise/pom.xml
jbpm4/tags/jbpm-4.2/modules/examples/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/console/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/form-plugin/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/graphView-plugin/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/report/pom.xml
jbpm4/tags/jbpm-4.2/modules/integration/tomcat/pom.xml
jbpm4/tags/jbpm-4.2/modules/jboss/pom.xml
jbpm4/tags/jbpm-4.2/modules/jpdl/pom.xml
jbpm4/tags/jbpm-4.2/modules/log/pom.xml
jbpm4/tags/jbpm-4.2/modules/migration/pom.xml
jbpm4/tags/jbpm-4.2/modules/pvm/pom.xml
jbpm4/tags/jbpm-4.2/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java
jbpm4/tags/jbpm-4.2/modules/test-base/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-cactus/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-cfg/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-concurrent/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-db/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-load/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-pojo/pom.xml
jbpm4/tags/jbpm-4.2/modules/test-upgrade/pom.xml
jbpm4/tags/jbpm-4.2/modules/userguide/pom.xml
jbpm4/tags/jbpm-4.2/pom.xml
jbpm4/tags/jbpm-4.2/qa/build.xml
jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml
Log:
changed version 4.2-SNAPSHOT to 4.2
Modified: jbpm4/tags/jbpm-4.2/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/build.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/build.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<property name="linux.browser" value="mozilla" />
<property name="distro.installation.dir" value="c:/software" />
- <property name="distro.version" value="4.2-SNAPSHOT" />
+ <property name="distro.version" value="4.2" />
<property name="distro.jboss.version" value="5.0.0.GA" />
<property name="distro.eclipse" value="c:/downloads/eclipse/eclipse-jee-ganymede-SR1-win32.zip" />
<property name="distro.jboss" value="c:/downloads/jboss/jboss-${distro.jboss.version}.zip" />
Modified: jbpm4/tags/jbpm-4.2/modules/api/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/api/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/api/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/bpmn/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/bpmn/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/bpmn/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -37,7 +37,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/db/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/db/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/db/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/devguide/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/devguide/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/devguide/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/devguide/src/main/docbook/en/modules/ch17-Signavio.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -78,7 +78,7 @@
</context-param>
<context-param>
<description>Filesystem directory that is used to store models</description>
- <param-name>fileSystemRootDirectory</param-name><param-value>/home/jbarrez/dev/temp/jbpm-4.2-SNAPSHOT/signavio-repository</param-value>
+ <param-name>fileSystemRootDirectory</param-name><param-value>/home/jbarrez/dev/temp/jbpm-4.2/signavio-repository</param-value>
</context-param>
</programlisting>
</para>
Modified: jbpm4/tags/jbpm-4.2/modules/distro/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/distro/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/examples/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/examples/build.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/examples/build.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -8,7 +8,7 @@
<!-- DEFAULT PROPERTY VALUES -->
<property name="database" value="hsqldb" />
<property name="jbpm.parent.dir" value="../.." />
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.2" />
<property name="jboss.version" value="5.0.0.GA" />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" />
Modified: jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/build.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/distro/src/main/files/install/build.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -14,7 +14,7 @@
<echo message="mail.smtp.host... ${mail.smtp.host}" />
<!-- INTERNAL PROPERTY DEFAULTS -->
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.2" />
<property name="jbpm.parent.dir" value="../.." />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" />
<property name="hibernate.connection.type" value="jdbc" /> <!-- jdbc | datasource -->
Modified: jbpm4/tags/jbpm-4.2/modules/enterprise/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/enterprise/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/enterprise/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/examples/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/examples/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/examples/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/integration/console/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/console/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/console/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.2/modules/integration/form-plugin/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/form-plugin/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/form-plugin/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/tags/jbpm-4.2/modules/integration/graphView-plugin/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/graphView-plugin/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/graphView-plugin/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/tags/jbpm-4.2/modules/integration/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -13,7 +13,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/integration/report/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/report/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/report/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Dependencies -->
Modified: jbpm4/tags/jbpm-4.2/modules/integration/tomcat/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/integration/tomcat/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/integration/tomcat/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-integration</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.2/modules/jboss/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/jboss/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/jboss/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -12,7 +12,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
</parent>
<!-- Properties -->
Modified: jbpm4/tags/jbpm-4.2/modules/jpdl/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/jpdl/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/jpdl/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/log/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/log/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/log/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/migration/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/migration/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/migration/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/pvm/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/pvm/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/pvm/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/pvm/src/main/java/org/jbpm/pvm/internal/cfg/ProcessEngineImpl.java 2009-10-29 12:51:35 UTC (rev 5846)
@@ -98,7 +98,7 @@
private static final long serialVersionUID = 1L;
private static final Log log = Log.getLog(ProcessEngineImpl.class.getName());
- public static final String JBPM_LIBRARY_VERSION = "4.2-SNAPSHOT";
+ public static final String JBPM_LIBRARY_VERSION = "4.2";
transient protected String jndiName;
transient protected boolean checkDb = true;
Modified: jbpm4/tags/jbpm-4.2/modules/test-base/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-base/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-base/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-cactus/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-cactus/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-cactus/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-cfg/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-cfg/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-cfg/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-concurrent/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-concurrent/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-concurrent/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-db/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-db/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-db/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-load/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-load/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-load/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-pojo/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-pojo/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-pojo/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/test-upgrade/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/test-upgrade/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/test-upgrade/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/modules/userguide/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/modules/userguide/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/modules/userguide/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
Modified: jbpm4/tags/jbpm-4.2/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -21,7 +21,7 @@
<artifactId>jbpm</artifactId>
<packaging>pom</packaging>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<organization>
<name>JBoss, a division of Red Hat</name>
Modified: jbpm4/tags/jbpm-4.2/qa/build.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/qa/build.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/qa/build.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -10,7 +10,7 @@
<!-- CONFIGURABLE PROPERTIES -->
<property name="database" value="hsqldb" />
<property name="identity.component" value="jbpm-built-in" />
- <property name="jbpm.version" value="4.2-SNAPSHOT" />
+ <property name="jbpm.version" value="4.2" />
<property name="jbpm.home" value="${jbpm.parent.dir}/jbpm-${jbpm.version}" /> <!-- jbpm.home should not be configured. change jbpm.parent.dir instead -->
<property name="jboss.version" value="5.0.0.GA" />
<property name="jboss.distro.dir" value="${jbpm.home}/downloads" />
Modified: jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml
===================================================================
--- jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml 2009-10-29 12:26:33 UTC (rev 5845)
+++ jbpm4/tags/jbpm-4.2/qa/upgrade/pom.xml 2009-10-29 12:51:35 UTC (rev 5846)
@@ -17,7 +17,7 @@
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-fetch-old-distro</artifactId>
<packaging>jar</packaging>
- <version>4.2-SNAPSHOT</version>
+ <version>4.2</version>
<build>
<plugins>
16 years, 6 months
JBoss JBPM SVN: r5845 - jbpm4/tags.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 08:26:33 -0400 (Thu, 29 Oct 2009)
New Revision: 5845
Added:
jbpm4/tags/jbpm-4.2/
Log:
creating release branch for jbpm-4.2
Copied: jbpm4/tags/jbpm-4.2 (from rev 5844, jbpm4/trunk)
16 years, 6 months
JBoss JBPM SVN: r5844 - jbpm4/trunk.
by do-not-reply@jboss.org
Author: heiko.braun(a)jboss.com
Date: 2009-10-29 08:10:47 -0400 (Thu, 29 Oct 2009)
New Revision: 5844
Modified:
jbpm4/trunk/pom.xml
Log:
Switch back to console 1.2.0-SNAPSHOT
Modified: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml 2009-10-29 10:39:29 UTC (rev 5843)
+++ jbpm4/trunk/pom.xml 2009-10-29 12:10:47 UTC (rev 5844)
@@ -49,8 +49,7 @@
<cactus.version>1.8.1</cactus.version>
<aspectjrt.version>1.5.3</aspectjrt.version>
<freemarker.version>2.3.15</freemarker.version>
- <gwt.console.version>1.1.2-SNAPSHOT</gwt.console.version>
- <!-- <gwt.console.version>1.2.0-SNAPSHOT</gwt.console.version>-->
+ <gwt.console.version>1.2.0-SNAPSHOT</gwt.console.version>
<jbpm.gpd.version>4.2</jbpm.gpd.version>
<hibernate.version>3.3.1.GA</hibernate.version>
<slf4j.version>1.5.2</slf4j.version>
16 years, 6 months
JBoss JBPM SVN: r5843 - in jbpm4/trunk/modules: enterprise and 9 other directories.
by do-not-reply@jboss.org
Author: tom.baeyens(a)jboss.com
Date: 2009-10-29 06:39:29 -0400 (Thu, 29 Oct 2009)
New Revision: 5843
Modified:
jbpm4/trunk/modules/bpmn/.project
jbpm4/trunk/modules/enterprise/.project
jbpm4/trunk/modules/examples/.project
jbpm4/trunk/modules/integration/console/.project
jbpm4/trunk/modules/jboss/.project
jbpm4/trunk/modules/jpdl/.project
jbpm4/trunk/modules/log/.project
jbpm4/trunk/modules/migration/.project
jbpm4/trunk/modules/test-db/.project
jbpm4/trunk/modules/test-load/.project
jbpm4/trunk/modules/test-pojo/.project
Log:
prefixed eclipse project names with jbpm-
Modified: jbpm4/trunk/modules/bpmn/.project
===================================================================
--- jbpm4/trunk/modules/bpmn/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/bpmn/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>bpmn</name>
+ <name>jbpm-bpmn</name>
<comment></comment>
<projects>
</projects>
Modified: jbpm4/trunk/modules/enterprise/.project
===================================================================
--- jbpm4/trunk/modules/enterprise/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/enterprise/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>enterprise</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-enterprise</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/examples/.project
===================================================================
--- jbpm4/trunk/modules/examples/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/examples/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>examples</name>
+ <name>jbpm-examples</name>
<comment></comment>
<projects>
</projects>
Modified: jbpm4/trunk/modules/integration/console/.project
===================================================================
--- jbpm4/trunk/modules/integration/console/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/integration/console/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>console-integration</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-console-integration</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/jboss/.project
===================================================================
--- jbpm4/trunk/modules/jboss/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/jboss/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jboss</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-jboss</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/jpdl/.project
===================================================================
--- jbpm4/trunk/modules/jpdl/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/jpdl/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>jpdl</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-jpdl</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/log/.project
===================================================================
--- jbpm4/trunk/modules/log/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/log/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>log</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-log</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/migration/.project
===================================================================
--- jbpm4/trunk/modules/migration/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/migration/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>migration</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-migration</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/test-db/.project
===================================================================
--- jbpm4/trunk/modules/test-db/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/test-db/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>test-db</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-test-db</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/test-load/.project
===================================================================
--- jbpm4/trunk/modules/test-load/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/test-load/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>test-load</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-test-load</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Modified: jbpm4/trunk/modules/test-pojo/.project
===================================================================
--- jbpm4/trunk/modules/test-pojo/.project 2009-10-29 10:21:47 UTC (rev 5842)
+++ jbpm4/trunk/modules/test-pojo/.project 2009-10-29 10:39:29 UTC (rev 5843)
@@ -1,23 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>test-pojo</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- </natures>
-</projectDescription>
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>jbpm-test-pojo</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
16 years, 6 months