diff --git a/get-started/apache-maven/index.html b/get-started/apache-maven/index.html index adfba5a68..ff50f669c 100644 --- a/get-started/apache-maven/index.html +++ b/get-started/apache-maven/index.html @@ -278,13 +278,13 @@
This page lists the most commonly used Apache Maven Coordinates for CIB seven.
-CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.de.
+CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.org.
Extra repository should be added to settings.xml
or to the POM file:
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
Publishing to any public repositories is pending.
@@ -352,7 +352,7 @@In order to browse the CIB seven artifacts, here are the link you can use.
-https://artifacts.cibseven.de/#browse/browse:public
+https://artifacts.cibseven.org/service/rest/repository/browse/public/
If you need to install Java Runtime Environment, you can find the download from Oracle here.
CIB seven comes with a maintained changelog file that Liquibase can consume.
This changelog defines which SQL statements to execute on a database.
-You can find the changelog and its referenced resources on our Artifact Repository.
+You can find the changelog and its referenced resources on our Artifact Repository.
Select the respective version ($PLATFORM_VERSION
) and download the resources as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$PLATFORM_VERSION/liquibase
folder to find the changelog.
+Open the cibseven-sql-scripts-$PLATFORM_VERSION/liquibase
folder to find the changelog.
In case you are using a pre-packaged distribution, the Liquibase resources already reside in the sql/liquibase
folder of the distribution.
The liquibase
folder contains the following resources:
To install the database schema required for CIB seven, we provide a set of scripts with prepared DDL statements.
-Those scripts create all required tables and default indices. You can find the provided SQL scripts on our Artifact Repository.
+Those scripts create all required tables and default indices. You can find the provided SQL scripts on our Artifact Repository.
Select the respective version ($PLATFORM_VERSION
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$PLATFORM_VERSION/create
folder to find all available scripts.
+Open the cibseven-sql-scripts-$PLATFORM_VERSION/create
folder to find all available scripts.
In case you are using a pre-packaged distribution, the SQL scripts already reside in the sql/create
folder of the distribution.
The create
folder contains the following SQL scripts:
Perform the following steps to update the database schema on your database instance:
$Y
) on our Artifact Repository and download the resources as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/liquibase
folder to find the changelog file.
+$Y
) on our Artifact Repository and download the resources as a zip
or tar.gz
file.
+Open the cibseven-sql-scripts-$Y/liquibase
folder to find the changelog file.
In case you are using a pre-packaged distribution, the Liquibase resources already reside in the sql/liquibase
folder of the distribution with version $Y
.camunda-changelog.xml
of version $Y
.
Liquibase takes care of determining the necessary changes and applying them to your database according to the new changelog.
@@ -3276,9 +3274,9 @@ Check for available database patch scripts for your database that are within the bounds of your update path.
-You can find the scripts on our Artifact Repository.
+You can find the scripts on our Artifact Repository.
Select the respective version you want to update to ($Y
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/upgrade
folder to find all available scripts.
+Open the cibseven-sql-scripts-$Y/upgrade
folder to find all available scripts.
In case you are using a pre-packaged distribution, the SQL scripts already reside in the sql/upgrade
folder of the distribution with version $Y
.
We highly recommend executing these patches before updating.
Execute those related to your database type ($DATABASENAME
) in ascending order by version number.
@@ -3726,9 +3724,9 @@
You can find the necessary scripts on our Artifact Repository. +
You can find the necessary scripts on our Artifact Repository.
Select the respective patch version you want to update to ($Y
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/upgrade
folder to find all available patch scripts.
+Open the cibseven-sql-scripts-$Y/upgrade
folder to find all available patch scripts.
In case you are using a pre-packaged distribution, the SQL scripts reside in the sql/upgrade
folder of the distribution you want to update to.
The patch scripts are named $DATABASENAME_engine_$MINOR_patch_$A_to_$B
, with $A
being the patch level version to update from, $B
the patch level to update to, and $MINOR
the minor version they are on, e.g., 7.16
.
If you do choose to apply a database patch, then you must apply all patch scripts that are within the bounds of your update path. This means if your current patch version is X.X.1
and you update to X.X.5
you have to execute all patch scripts first where $A
≥ X.X.1
and $B
≤ X.X.5
.
Docker images can be found on GitHub and Docker Hub.
Please note that by default the Apache Tomcat distribution is used. For a guide on how to use one of the other distributions, see the tag schema.
-For example, tags like 1.1
or latest
without explicit distribution mark are delivering Tomcat version of CIB seven.
1.1.0
or latest
without explicit distribution mark are delivering Tomcat version of CIB seven.
To start CIB seven Run execute the following commands:
docker pull cibseven/cibseven:run-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:run-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:run-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-1.1.0
To start CIB seven Tomcat version, execute the following commands:
docker pull cibseven/cibseven:tomcat-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:tomcat-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:tomcat-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-1.1.0
To start CIB seven Wildfly version, execute the following commands:
docker pull cibseven/cibseven:wildfly-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:wildfly-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:wildfly-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-1.1.0
camunda-webapp-wildfly-1.1.war
.camunda-webapp-jboss-1.1.war
.cibseven-webapp-wildfly-1.1.0.war
.cibseven-webapp-jboss-1.1.0.war
.Copy the modules from the modules/
folder of the CIB seven distribution, or extract the camunda-wildfly-modules
archive, to the $WILDFLY_HOME/modules/
of your WildFly application server.
camunda-engine-rest-jakarta-1.1-wildfly.war
.camunda-engine-rest-1.1-wildfly.war
.cibseven-engine-rest-jakarta-1.1.0-wildfly.war
.cibseven-engine-rest-1.1.0-wildfly.war
./engine-rest
).
@@ -3291,13 +3289,13 @@ /engine-rest
.Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/bpm/camunda-engine-plugin-connect
org/cibseven/commons/camunda-commons-utils
org/cibseven/bpm/cibseven-engine-plugin-connect
org/cibseven/commons/cibeven-commons-utils
To activate Camunda Connect functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
To activate CIB seven Connect functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
<subsystem xmlns="urn:org.cibseven.bpm.jboss:1.1">
...
<process-engines>
@@ -3314,31 +3312,31 @@ Camunda Connect Plugin
</process-engines>
...
</subsystem>
-
You can use the Camunda Spin plugin to extend the engine functionality to de-/serialize object variables from and to JSON and XML. For more information, see the Spin Reference.
+You can use the Spin plugin to extend the engine functionality to de-/serialize object variables from and to JSON and XML. For more information, see the Spin Reference.
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/spin/camunda-spin-core
org/cibseven/spin/camunda-spin-dataformat-json-jackson
org/cibseven/spin/camunda-spin-dataformat-xml-dom-jakarta
+org/cibseven/spin/cibseven-spin-core
org/cibseven/spin/cibseven-spin-dataformat-json-jackson
org/cibseven/spin/cibseven-spin-dataformat-xml-dom-jakarta
org/cibseven/spin/camunda-spin-dataformat-xml-dom
+org/cibseven/spin/cibseven-spin-dataformat-xml-dom
org/cibseven/bpm/camunda-engine-plugin-spin
org/cibseven/commons/camunda-commons-utils
org/cibseven/bpm/cibseven-engine-plugin-spin
org/cibseven/commons/cibseven-commons-utils
com/fasterxml/jackson/core/jackson-core
com/fasterxml/jackson/core/jackson-databind
com/fasterxml/jackson/core/jackson-annotations
com/jayway/jsonpath/json-path
In order to activate Camunda Spin functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
In order to activate Spin functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
<subsystem xmlns="urn:org.cibseven.bpm.jboss:1.1">
...
<process-engines>
@@ -3356,14 +3354,14 @@ Setup Spin
...
</subsystem>
The usage of Jackson annotations on WildFly together with the Camunda Spin JSON serialization can lead to problems. +
The usage of Jackson annotations on WildFly together with the Spin JSON serialization can lead to problems. WildFly implicitly adds the JAX-RS subsystem to each new deployment, if JAX-RS annotations are present (see the WildFly documentation for more information). -This JAX-RS subsystem includes the Jackson library, the version of which does not match with the version used by the Camunda SPIN Plugin. +This JAX-RS subsystem includes the Jackson library, the version of which does not match with the version used by the SPIN Plugin. As a result, Jackson annotations will be ignored. Note that this problem does not necessarily have to emerge upon direct usage of Spin. -The Spin plugin also comes into play when JSON variables are set or read by the Camunda Process Engine.
+The Spin plugin also comes into play when JSON variables are set or read by the CIB seven Process Engine.See one of the following ways to fix this:
main
slot to the version which is used by the Camunda Spin Plugin.main
slot to the version which is used by the Spin Plugin.jboss-deployment-structure.xml
file to you application in the WEB-INF folder.See this Camunda Forum Post for other approaches and information.
Camunda Spin is not available in scripts if a process definition is deployed via REST API. Because WildFly handles dependencies using its module system and CIB seven engine module has no module dependency on the spin module.
+Spin is not available in scripts if a process definition is deployed via REST API. Because WildFly handles dependencies using its module system and CIB seven engine module has no module dependency on the spin module.
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/template-engines/camunda-template-engines-freemarker
org/cibseven/template-engines/cibseven-template-engines-freemarker
org/freemarker/freemarker
org/cibseven/commons/camunda-commons-logging
org/cibseven/commons/camunda-commons-utils
org/cibseven/commons/cibseven-commons-logging
org/cibseven/commons/cibseven-commons-utils
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
This section describes how you can install CIB seven and its components on a vanilla Apache Tomcat, if you are not able to use the pre-packaged Tomcat distribution. In addition, download a Tomcat distribution to fetch the required CIB seven modules.
+This section describes how you can install CIB seven and its components on a vanilla Apache Tomcat, if you are not able to use the pre-packaged Tomcat distribution. In addition, download a Tomcat distribution to fetch the required CIB seven modules.
The following steps are required to deploy the applications:
Download the CIB seven web application that contains both applications from our Artifact Repository.
-Choose the correct version named camunda-engine-rest-1.1-tomcat.war
.
Download the CIB seven web application that contains both applications from our Artifact Repository.
+Choose the correct version named cibseven-engine-rest-1.1.0-tomcat.war
.
camunda-engine-rest-jakarta-1.1-tomcat.war
.camunda-engine-rest-1.1-tomcat.war
.cibseven-engine-rest-jakarta-1.1.0-tomcat.war
.cibseven-engine-rest-1.1.0-tomcat.war
.Copy the war file to $TOMCAT_HOME/webapps/camunda.war
.
+
Copy the war file to $TOMCAT_HOME/webapps/cibseven.war
.
Optionally you may name it differently or extract it to a folder to deploy it to a different context path.
The following steps are required to deploy the REST API:
$TOMCAT_HOME/webapps
.
Optionally you may rename it or extract it to a folder to deploy it to a specific context like /engine-rest
./engine-rest
.Add the following artifacts (if not existing) from the folder $TOMCAT_DISTRIBUTION/lib/
to the folder $TOMCAT_HOME/lib/
:
camunda-engine-plugin-connect-$PLATFORM_VERSION.jar
camunda-commons-utils-$PLATFORM_VERSION.jar
cibseven-engine-plugin-connect-$PLATFORM_VERSION.jar
cibseven-commons-utils-$PLATFORM_VERSION.jar
In order to activate Camunda Connect functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
In order to activate CIB seven Connect functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
<?xml version="1.0" encoding="UTF-8"?>
<bpm-platform ...>
<process-engine name="default">
@@ -3319,15 +3317,15 @@ Camunda Connect Plugin
</process-engine>
</bpm-platform>
-
Add the following artifacts (if not existing) from the folder $TOMCAT_DISTRIBUTION/lib/
to the folder $TOMCAT_HOME/lib/
:
camunda-spin-dataformat-all-$PLATFORM_VERSION.jar
camunda-spin-core-$PLATFORM_VERSION.jar
camunda-engine-plugin-spin-$PLATFORM_VERSION.jar
camunda-commons-utils-$PLATFORM_VERSION.jar
cibseven-spin-dataformat-all-$PLATFORM_VERSION.jar
cibseven-spin-core-$PLATFORM_VERSION.jar
cibseven-engine-plugin-spin-$PLATFORM_VERSION.jar
cibseven-commons-utils-$PLATFORM_VERSION.jar
In order to activate Camunda Spin functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
In order to activate Spin functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
<?xml version="1.0" encoding="UTF-8"?>
<bpm-platform ...>
...
@@ -3392,8 +3390,8 @@ On this Page:
- Cockpit, Tasklist and Admin
- REST API
- - Camunda Connect Plugin
- - Camunda Spin
+ - CIB seven Connect Plugin
+ - Spin
- Groovy Scripting
- Freemarker Integration
- GraalVM JavaScript Integration
diff --git a/manual/1.1/installation/full/tomcat/pre-packaged/index.html b/manual/1.1/installation/full/tomcat/pre-packaged/index.html
index 4fe696f3d..8454095d5 100644
--- a/manual/1.1/installation/full/tomcat/pre-packaged/index.html
+++ b/manual/1.1/installation/full/tomcat/pre-packaged/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
camunda-welcome.bat
or by using the $TOMCAT_HOME/bin/startup.{bat/sh}
script.cibseven-welcome.bat
or by using the $TOMCAT_HOME/bin/startup.{bat/sh}
script.Please note that the environments listed in this section depend on the version of CIB seven. Please select the corresponding version of this documentation to see the environment that fits to your version of CIB seven. e.g., supported environments for version 1.1
+Please note that the environments listed in this section depend on the version of CIB seven. Please select the corresponding version of this documentation to see the environment that fits to your version of CIB seven. e.g., supported environments for version 1.1
The documentation is shipped as a single openapi.json
file archived in a jar artifact.
-Download the Camunda REST API artifact containing the OpenAPI documentation here. Choose the correct version and then download the jar
file.
jar
file.
Alternatively, you can obtain this artifact with the following Maven coordinates:
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-engine-rest-openapi</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
To generate REST API client in the language of your preference based on the OpenAPI documentation, diff --git a/manual/1.1/reference/rest/overview/authentication/index.html b/manual/1.1/reference/rest/overview/authentication/index.html index c3a27dc21..bde16409e 100644 --- a/manual/1.1/reference/rest/overview/authentication/index.html +++ b/manual/1.1/reference/rest/overview/authentication/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/date-format/index.html b/manual/1.1/reference/rest/overview/date-format/index.html index d58a37a9d..2c3ffffbf 100644 --- a/manual/1.1/reference/rest/overview/date-format/index.html +++ b/manual/1.1/reference/rest/overview/date-format/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/distro-use/index.html b/manual/1.1/reference/rest/overview/distro-use/index.html index f422c7b7d..8b6644112 100644 --- a/manual/1.1/reference/rest/overview/distro-use/index.html +++ b/manual/1.1/reference/rest/overview/distro-use/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/embeddability/index.html b/manual/1.1/reference/rest/overview/embeddability/index.html index b7dc73fdc..31e84b783 100644 --- a/manual/1.1/reference/rest/overview/embeddability/index.html +++ b/manual/1.1/reference/rest/overview/embeddability/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/hal/index.html b/manual/1.1/reference/rest/overview/hal/index.html index a066c4915..fa8037dee 100644 --- a/manual/1.1/reference/rest/overview/hal/index.html +++ b/manual/1.1/reference/rest/overview/hal/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/index.html b/manual/1.1/reference/rest/overview/index.html index 569a2b235..81e82744b 100644 --- a/manual/1.1/reference/rest/overview/index.html +++ b/manual/1.1/reference/rest/overview/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/rest/overview/variables/index.html b/manual/1.1/reference/rest/overview/variables/index.html index 1a2ee1fb2..5c653eba2 100644 --- a/manual/1.1/reference/rest/overview/variables/index.html +++ b/manual/1.1/reference/rest/overview/variables/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/extending-spin/index.html b/manual/1.1/reference/spin/extending-spin/index.html index 1d5be9de3..f911e3b49 100644 --- a/manual/1.1/reference/spin/extending-spin/index.html +++ b/manual/1.1/reference/spin/extending-spin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/index.html b/manual/1.1/reference/spin/index.html index 7ad15f634..8b0ce0a31 100644 --- a/manual/1.1/reference/spin/index.html +++ b/manual/1.1/reference/spin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3175,7 +3173,7 @@
CIB seven’s version of Spin is published to artifacts.cibseven.de. See the instruction how to use it.
+CIB seven’s version of Spin is published to artifacts.cibseven.org. See the instruction how to use it.
diff --git a/manual/1.1/reference/spin/json/01-reading-json/index.html b/manual/1.1/reference/spin/json/01-reading-json/index.html index ff6c29aa1..fac6f7f75 100644 --- a/manual/1.1/reference/spin/json/01-reading-json/index.html +++ b/manual/1.1/reference/spin/json/01-reading-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/json/02-writing-json/index.html b/manual/1.1/reference/spin/json/02-writing-json/index.html index 47768de10..4caceaac5 100644 --- a/manual/1.1/reference/spin/json/02-writing-json/index.html +++ b/manual/1.1/reference/spin/json/02-writing-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/json/03-querying-json/index.html b/manual/1.1/reference/spin/json/03-querying-json/index.html index 52883f827..0551e71bb 100644 --- a/manual/1.1/reference/spin/json/03-querying-json/index.html +++ b/manual/1.1/reference/spin/json/03-querying-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/json/04-mapping-json/index.html b/manual/1.1/reference/spin/json/04-mapping-json/index.html index c82ac1ed2..d7ebf670a 100644 --- a/manual/1.1/reference/spin/json/04-mapping-json/index.html +++ b/manual/1.1/reference/spin/json/04-mapping-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/json/05-configuring-json/index.html b/manual/1.1/reference/spin/json/05-configuring-json/index.html index c01c98103..95f359d25 100644 --- a/manual/1.1/reference/spin/json/05-configuring-json/index.html +++ b/manual/1.1/reference/spin/json/05-configuring-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/json/index.html b/manual/1.1/reference/spin/json/index.html index d3454bc8c..ea1979921 100644 --- a/manual/1.1/reference/spin/json/index.html +++ b/manual/1.1/reference/spin/json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/01-reading-xml/index.html b/manual/1.1/reference/spin/xml/01-reading-xml/index.html index 690adf611..a10189b8c 100644 --- a/manual/1.1/reference/spin/xml/01-reading-xml/index.html +++ b/manual/1.1/reference/spin/xml/01-reading-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/02-manipulating-xml/index.html b/manual/1.1/reference/spin/xml/02-manipulating-xml/index.html index 44bda2c1c..e3ca9338f 100644 --- a/manual/1.1/reference/spin/xml/02-manipulating-xml/index.html +++ b/manual/1.1/reference/spin/xml/02-manipulating-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/03-writing-xml/index.html b/manual/1.1/reference/spin/xml/03-writing-xml/index.html index 45bd3cd35..56b6bb838 100644 --- a/manual/1.1/reference/spin/xml/03-writing-xml/index.html +++ b/manual/1.1/reference/spin/xml/03-writing-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/04-querying-xml/index.html b/manual/1.1/reference/spin/xml/04-querying-xml/index.html index 37ed3a248..b7fd3cc72 100644 --- a/manual/1.1/reference/spin/xml/04-querying-xml/index.html +++ b/manual/1.1/reference/spin/xml/04-querying-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/05-mapping-xml/index.html b/manual/1.1/reference/spin/xml/05-mapping-xml/index.html index 6f9439aa4..7a71e580f 100644 --- a/manual/1.1/reference/spin/xml/05-mapping-xml/index.html +++ b/manual/1.1/reference/spin/xml/05-mapping-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/06-configuring-xml/index.html b/manual/1.1/reference/spin/xml/06-configuring-xml/index.html index 7235f8fa5..8b7f396af 100644 --- a/manual/1.1/reference/spin/xml/06-configuring-xml/index.html +++ b/manual/1.1/reference/spin/xml/06-configuring-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/reference/spin/xml/index.html b/manual/1.1/reference/spin/xml/index.html index 7d8b2b026..9ff26ea60 100644 --- a/manual/1.1/reference/spin/xml/index.html +++ b/manual/1.1/reference/spin/xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/update/activiti/index.html b/manual/1.1/update/activiti/index.html index ff265e566..9ec9767ea 100644 --- a/manual/1.1/update/activiti/index.html +++ b/manual/1.1/update/activiti/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/update/index.html b/manual/1.1/update/index.html index cb0106056..3d1a59b02 100644 --- a/manual/1.1/update/index.html +++ b/manual/1.1/update/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/update/rolling-update/index.html b/manual/1.1/update/rolling-update/index.html index 360c505e5..b926cbccb 100644 --- a/manual/1.1/update/rolling-update/index.html +++ b/manual/1.1/update/rolling-update/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/built-in-beans/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/built-in-beans/index.html index 5e3a7eefc..60152347d 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/built-in-beans/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/built-in-beans/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html index 8daa034fe..419811b1c 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/expression-resolving/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/expression-resolving/index.html index 489f4bd44..466c6d97a 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/expression-resolving/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/expression-resolving/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/index.html index 0889b0a58..0a232b8d3 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html index ac28dae45..aa5be1de6 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html b/manual/1.1/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html index 4ac77c5c2..df8b3cf3b 100644 --- a/manual/1.1/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html +++ b/manual/1.1/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/cibseven-run/index.html b/manual/1.1/user-guide/cibseven-run/index.html index 39b111d70..26f6e365b 100644 --- a/manual/1.1/user-guide/cibseven-run/index.html +++ b/manual/1.1/user-guide/cibseven-run/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3168,7 +3166,7 @@To start with CIB seven Run, download the distribution and unpacking it. You will find the following structure:
+To start with CIB seven Run, download the distribution and unpacking it. You will find the following structure:
cibseven-run
├── configuration/
│ ├── keystore/
@@ -3285,7 +3283,7 @@ Connect to a Database
In the unpacked distro, you will find a resources
folder. All files (including BPMN, DMN, CMMN, form, and script files) will be deployed when you start CIB seven Run.
You can reference forms and scripts in the BPMN diagram with embedded:deployment:/my-form.html
, camunda-forms:deployment:/myform.form
, or deployment:/my-script.js
. The deployment requires adding an extra /
as a prefix to the filename.
You can reference forms and scripts in the BPMN diagram with embedded:deployment:/my-form.html
, cibseven-forms:deployment:/myform.form
, or deployment:/my-script.js
. The deployment requires adding an extra /
as a prefix to the filename.
Deployments via the REST API are still possible.
Just like all the other distros, you can tailor CIB seven Run to your needs. To do this, you only have to edit one of the configuration files that you can find in the configuration folder.
diff --git a/manual/1.1/user-guide/data-formats/configuring-spin-integration/index.html b/manual/1.1/user-guide/data-formats/configuring-spin-integration/index.html index ab6c41fb4..332c05d40 100644 --- a/manual/1.1/user-guide/data-formats/configuring-spin-integration/index.html +++ b/manual/1.1/user-guide/data-formats/configuring-spin-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/data-formats/data-formats-in-processes/index.html b/manual/1.1/user-guide/data-formats/data-formats-in-processes/index.html index 310f1fcee..fb6b4854c 100644 --- a/manual/1.1/user-guide/data-formats/data-formats-in-processes/index.html +++ b/manual/1.1/user-guide/data-formats/data-formats-in-processes/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/data-formats/index.html b/manual/1.1/user-guide/data-formats/index.html index 23ae6908b..0a134c77f 100644 --- a/manual/1.1/user-guide/data-formats/index.html +++ b/manual/1.1/user-guide/data-formats/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/data-formats/json/index.html b/manual/1.1/user-guide/data-formats/json/index.html index f8a94bcbc..53d096333 100644 --- a/manual/1.1/user-guide/data-formats/json/index.html +++ b/manual/1.1/user-guide/data-formats/json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/data-formats/xml/index.html b/manual/1.1/user-guide/data-formats/xml/index.html index 022b8521e..a6908cc51 100644 --- a/manual/1.1/user-guide/data-formats/xml/index.html +++ b/manual/1.1/user-guide/data-formats/xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/data-types/index.html b/manual/1.1/user-guide/dmn-engine/data-types/index.html index 35dab8c25..97e1becc9 100644 --- a/manual/1.1/user-guide/dmn-engine/data-types/index.html +++ b/manual/1.1/user-guide/dmn-engine/data-types/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/embed/index.html b/manual/1.1/user-guide/dmn-engine/embed/index.html index 9a648c9d3..90d47a508 100644 --- a/manual/1.1/user-guide/dmn-engine/embed/index.html +++ b/manual/1.1/user-guide/dmn-engine/embed/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/evaluate-decisions/index.html b/manual/1.1/user-guide/dmn-engine/evaluate-decisions/index.html index 2ad15947d..2b01504f0 100644 --- a/manual/1.1/user-guide/dmn-engine/evaluate-decisions/index.html +++ b/manual/1.1/user-guide/dmn-engine/evaluate-decisions/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/expressions-and-scripts/index.html b/manual/1.1/user-guide/dmn-engine/expressions-and-scripts/index.html index de3fc15f7..d58048283 100644 --- a/manual/1.1/user-guide/dmn-engine/expressions-and-scripts/index.html +++ b/manual/1.1/user-guide/dmn-engine/expressions-and-scripts/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/feel/custom-functions/index.html b/manual/1.1/user-guide/dmn-engine/feel/custom-functions/index.html index 86bc3c17f..bb23c215a 100644 --- a/manual/1.1/user-guide/dmn-engine/feel/custom-functions/index.html +++ b/manual/1.1/user-guide/dmn-engine/feel/custom-functions/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/feel/index.html b/manual/1.1/user-guide/dmn-engine/feel/index.html index 55ca601fd..e23217ad3 100644 --- a/manual/1.1/user-guide/dmn-engine/feel/index.html +++ b/manual/1.1/user-guide/dmn-engine/feel/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/feel/legacy-behavior/index.html b/manual/1.1/user-guide/dmn-engine/feel/legacy-behavior/index.html index f46f0be67..7bea3260c 100644 --- a/manual/1.1/user-guide/dmn-engine/feel/legacy-behavior/index.html +++ b/manual/1.1/user-guide/dmn-engine/feel/legacy-behavior/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/feel/spin-integration/index.html b/manual/1.1/user-guide/dmn-engine/feel/spin-integration/index.html index 8c796a6a8..9ef87ec5c 100644 --- a/manual/1.1/user-guide/dmn-engine/feel/spin-integration/index.html +++ b/manual/1.1/user-guide/dmn-engine/feel/spin-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/feel/type-handling/index.html b/manual/1.1/user-guide/dmn-engine/feel/type-handling/index.html index f0abaf042..aa57fbea1 100644 --- a/manual/1.1/user-guide/dmn-engine/feel/type-handling/index.html +++ b/manual/1.1/user-guide/dmn-engine/feel/type-handling/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/index.html b/manual/1.1/user-guide/dmn-engine/index.html index a3346a644..39d64b56f 100644 --- a/manual/1.1/user-guide/dmn-engine/index.html +++ b/manual/1.1/user-guide/dmn-engine/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/dmn-engine/testing/index.html b/manual/1.1/user-guide/dmn-engine/testing/index.html index 4f07517b4..2d73c73f1 100644 --- a/manual/1.1/user-guide/dmn-engine/testing/index.html +++ b/manual/1.1/user-guide/dmn-engine/testing/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/ext-client/compatibility-matrix/index.html b/manual/1.1/user-guide/ext-client/compatibility-matrix/index.html index 32f599720..aea34b04f 100644 --- a/manual/1.1/user-guide/ext-client/compatibility-matrix/index.html +++ b/manual/1.1/user-guide/ext-client/compatibility-matrix/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/user-guide/ext-client/index.html b/manual/1.1/user-guide/ext-client/index.html index 7820d02a7..ac1ade04e 100644 --- a/manual/1.1/user-guide/ext-client/index.html +++ b/manual/1.1/user-guide/ext-client/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3284,7 +3282,7 @@Complete examples of how to set up the different External Task Clients can be found on Camunda’s GitHub (Java, +
Complete examples of how to set up the different External Task Clients can be found on Camunda’s GitHub (Java, JavaScript).
For a high throughput of external tasks, you should balance between the number of external task instances, the number of clients and the duration of handling the work.
diff --git a/manual/1.1/user-guide/ext-client/spring-boot-starter/index.html b/manual/1.1/user-guide/ext-client/spring-boot-starter/index.html index 64f687654..316668a96 100644 --- a/manual/1.1/user-guide/ext-client/spring-boot-starter/index.html +++ b/manual/1.1/user-guide/ext-client/spring-boot-starter/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3156,7 +3154,7 @@<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-external-task-client</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
Please check Camunda External Task Client Spring Boot Starter Examples.
The Client can subscribe to one or more topic names that are defined in your BPMN process model. @@ -3637,7 +3635,7 @@
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-external-task-client-spring</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
To bootstrap the Client, use the class annotation @EnableExternalTaskClient
. You can find all
configuration attributes in the
diff --git a/manual/1.1/user-guide/index.html b/manual/1.1/user-guide/index.html
index 01cb07104..ae7a4b867 100644
--- a/manual/1.1/user-guide/index.html
+++ b/manual/1.1/user-guide/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/logging/index.html b/manual/1.1/user-guide/logging/index.html
index f90a880fc..de6b3e24b 100644
--- a/manual/1.1/user-guide/logging/index.html
+++ b/manual/1.1/user-guide/logging/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/create-a-model/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/create-a-model/index.html
index 850bc055a..a97b2e367 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/create-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/delegation-code/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/delegation-code/index.html
index 7de70ba80..9b0162bae 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/delegation-code/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/extension-elements/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/extension-elements/index.html
index a2bec01dc..780dda3aa 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/extension-elements/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/extension-elements/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
index 887324bb1..d90cbdeb5 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/index.html
index 147c97186..0a1c1cd03 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/read-a-model/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/read-a-model/index.html
index 257fd2847..a7149f82b 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/read-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/bpmn-model-api/respository-service/index.html b/manual/1.1/user-guide/model-api/bpmn-model-api/respository-service/index.html
index dae9655c0..e869d0f96 100644
--- a/manual/1.1/user-guide/model-api/bpmn-model-api/respository-service/index.html
+++ b/manual/1.1/user-guide/model-api/bpmn-model-api/respository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/create-a-model/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/create-a-model/index.html
index 785b4e82e..2689b755c 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/create-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/delegation-code/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/delegation-code/index.html
index 3115f64d2..f28aebaf3 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/delegation-code/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/extension-elements/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/extension-elements/index.html
index 7f4214ab1..3d3a36ea5 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/extension-elements/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/extension-elements/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/index.html
index bfbd7dca5..8f2d0ac03 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/limitations/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/limitations/index.html
index d78abc19a..cf90c8465 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/limitations/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/limitations/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/read-a-model/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/read-a-model/index.html
index 553c888d3..3422459a5 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/read-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/cmmn-model-api/repository-service/index.html b/manual/1.1/user-guide/model-api/cmmn-model-api/repository-service/index.html
index 232dfd575..2e1b777f2 100644
--- a/manual/1.1/user-guide/model-api/cmmn-model-api/repository-service/index.html
+++ b/manual/1.1/user-guide/model-api/cmmn-model-api/repository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/dmn-model-api/create-a-model/index.html b/manual/1.1/user-guide/model-api/dmn-model-api/create-a-model/index.html
index 97a29bf90..7c5f4b6dd 100644
--- a/manual/1.1/user-guide/model-api/dmn-model-api/create-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/dmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/dmn-model-api/extension-attributes/index.html b/manual/1.1/user-guide/model-api/dmn-model-api/extension-attributes/index.html
index cda1a5e8b..4d0ca3735 100644
--- a/manual/1.1/user-guide/model-api/dmn-model-api/extension-attributes/index.html
+++ b/manual/1.1/user-guide/model-api/dmn-model-api/extension-attributes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/dmn-model-api/index.html b/manual/1.1/user-guide/model-api/dmn-model-api/index.html
index 98f036d72..ac2224d02 100644
--- a/manual/1.1/user-guide/model-api/dmn-model-api/index.html
+++ b/manual/1.1/user-guide/model-api/dmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/dmn-model-api/read-a-model/index.html b/manual/1.1/user-guide/model-api/dmn-model-api/read-a-model/index.html
index 5806015ee..a5a9f0b14 100644
--- a/manual/1.1/user-guide/model-api/dmn-model-api/read-a-model/index.html
+++ b/manual/1.1/user-guide/model-api/dmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/dmn-model-api/repository-service/index.html b/manual/1.1/user-guide/model-api/dmn-model-api/repository-service/index.html
index bd2883d75..bd801cf55 100644
--- a/manual/1.1/user-guide/model-api/dmn-model-api/repository-service/index.html
+++ b/manual/1.1/user-guide/model-api/dmn-model-api/repository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/model-api/index.html b/manual/1.1/user-guide/model-api/index.html
index ab91076f6..3d78986d4 100644
--- a/manual/1.1/user-guide/model-api/index.html
+++ b/manual/1.1/user-guide/model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/index.html b/manual/1.1/user-guide/process-applications/index.html
index f5d6790a7..0efd7bbb2 100644
--- a/manual/1.1/user-guide/process-applications/index.html
+++ b/manual/1.1/user-guide/process-applications/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/maven-archetypes/index.html b/manual/1.1/user-guide/process-applications/maven-archetypes/index.html
index 868649220..1a885461a 100644
--- a/manual/1.1/user-guide/process-applications/maven-archetypes/index.html
+++ b/manual/1.1/user-guide/process-applications/maven-archetypes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/process-application-event-listeners/index.html b/manual/1.1/user-guide/process-applications/process-application-event-listeners/index.html
index 0863e17ab..5c4831c42 100644
--- a/manual/1.1/user-guide/process-applications/process-application-event-listeners/index.html
+++ b/manual/1.1/user-guide/process-applications/process-application-event-listeners/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/process-application-resources/index.html b/manual/1.1/user-guide/process-applications/process-application-resources/index.html
index 3397e047c..47a5b7b66 100644
--- a/manual/1.1/user-guide/process-applications/process-application-resources/index.html
+++ b/manual/1.1/user-guide/process-applications/process-application-resources/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/the-process-application-class/index.html b/manual/1.1/user-guide/process-applications/the-process-application-class/index.html
index 3d085afd9..ca4305e90 100644
--- a/manual/1.1/user-guide/process-applications/the-process-application-class/index.html
+++ b/manual/1.1/user-guide/process-applications/the-process-application-class/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html b/manual/1.1/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
index a469248ac..b0e5a2363 100644
--- a/manual/1.1/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
+++ b/manual/1.1/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/authorization-service/index.html b/manual/1.1/user-guide/process-engine/authorization-service/index.html
index 314e98953..9ff1ec9fe 100644
--- a/manual/1.1/user-guide/process-engine/authorization-service/index.html
+++ b/manual/1.1/user-guide/process-engine/authorization-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/batch-operations/index.html b/manual/1.1/user-guide/process-engine/batch-operations/index.html
index 3ae718f94..917911b30 100644
--- a/manual/1.1/user-guide/process-engine/batch-operations/index.html
+++ b/manual/1.1/user-guide/process-engine/batch-operations/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/batch/index.html b/manual/1.1/user-guide/process-engine/batch/index.html
index 462516fc4..751e7aa33 100644
--- a/manual/1.1/user-guide/process-engine/batch/index.html
+++ b/manual/1.1/user-guide/process-engine/batch/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/connectors/index.html b/manual/1.1/user-guide/process-engine/connectors/index.html
index da7dddda7..5fb3a6b0b 100644
--- a/manual/1.1/user-guide/process-engine/connectors/index.html
+++ b/manual/1.1/user-guide/process-engine/connectors/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/database-configuration/index.html b/manual/1.1/user-guide/process-engine/database/database-configuration/index.html
index 1f89d11f6..303eedba2 100644
--- a/manual/1.1/user-guide/process-engine/database/database-configuration/index.html
+++ b/manual/1.1/user-guide/process-engine/database/database-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/database-schema/index.html b/manual/1.1/user-guide/process-engine/database/database-schema/index.html
index 0a30cdfed..40afa29c0 100644
--- a/manual/1.1/user-guide/process-engine/database/database-schema/index.html
+++ b/manual/1.1/user-guide/process-engine/database/database-schema/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/index.html b/manual/1.1/user-guide/process-engine/database/index.html
index e094b9b3e..523ba1a34 100644
--- a/manual/1.1/user-guide/process-engine/database/index.html
+++ b/manual/1.1/user-guide/process-engine/database/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/mssql-configuration/index.html b/manual/1.1/user-guide/process-engine/database/mssql-configuration/index.html
index 4989e27ae..bfd6b7c51 100644
--- a/manual/1.1/user-guide/process-engine/database/mssql-configuration/index.html
+++ b/manual/1.1/user-guide/process-engine/database/mssql-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/mysql-configuration/index.html b/manual/1.1/user-guide/process-engine/database/mysql-configuration/index.html
index 616049444..fdcbdae3f 100644
--- a/manual/1.1/user-guide/process-engine/database/mysql-configuration/index.html
+++ b/manual/1.1/user-guide/process-engine/database/mysql-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/database/performance/index.html b/manual/1.1/user-guide/process-engine/database/performance/index.html
index 48c4844b3..213acc443 100644
--- a/manual/1.1/user-guide/process-engine/database/performance/index.html
+++ b/manual/1.1/user-guide/process-engine/database/performance/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/bpmn-cmmn/index.html b/manual/1.1/user-guide/process-engine/decisions/bpmn-cmmn/index.html
index f3c424276..86c811fc9 100644
--- a/manual/1.1/user-guide/process-engine/decisions/bpmn-cmmn/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/bpmn-cmmn/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/configuration/index.html b/manual/1.1/user-guide/process-engine/decisions/configuration/index.html
index de271c022..c876b3380 100644
--- a/manual/1.1/user-guide/process-engine/decisions/configuration/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/decision-service/index.html b/manual/1.1/user-guide/process-engine/decisions/decision-service/index.html
index 06f4f3dd1..f5d09221d 100644
--- a/manual/1.1/user-guide/process-engine/decisions/decision-service/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/decision-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/history/index.html b/manual/1.1/user-guide/process-engine/decisions/history/index.html
index 7bffbf975..f098ad621 100644
--- a/manual/1.1/user-guide/process-engine/decisions/history/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/history/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/index.html b/manual/1.1/user-guide/process-engine/decisions/index.html
index 098364180..26339b211 100644
--- a/manual/1.1/user-guide/process-engine/decisions/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/decisions/repository/index.html b/manual/1.1/user-guide/process-engine/decisions/repository/index.html
index 8134154f4..e7a84342a 100644
--- a/manual/1.1/user-guide/process-engine/decisions/repository/index.html
+++ b/manual/1.1/user-guide/process-engine/decisions/repository/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/delegation-code/index.html b/manual/1.1/user-guide/process-engine/delegation-code/index.html
index d59bb8be8..2af2812ff 100644
--- a/manual/1.1/user-guide/process-engine/delegation-code/index.html
+++ b/manual/1.1/user-guide/process-engine/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/deployment-cache/index.html b/manual/1.1/user-guide/process-engine/deployment-cache/index.html
index 0d0d6cc3d..1017cad87 100644
--- a/manual/1.1/user-guide/process-engine/deployment-cache/index.html
+++ b/manual/1.1/user-guide/process-engine/deployment-cache/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/deployments/index.html b/manual/1.1/user-guide/process-engine/deployments/index.html
index aec9e27ae..3f72328e4 100644
--- a/manual/1.1/user-guide/process-engine/deployments/index.html
+++ b/manual/1.1/user-guide/process-engine/deployments/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/diagnostics-data/index.html b/manual/1.1/user-guide/process-engine/diagnostics-data/index.html
index 2cf665cb6..00b3465db 100644
--- a/manual/1.1/user-guide/process-engine/diagnostics-data/index.html
+++ b/manual/1.1/user-guide/process-engine/diagnostics-data/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/error-handling/index.html b/manual/1.1/user-guide/process-engine/error-handling/index.html
index 2a2048116..d1e3e0d1e 100644
--- a/manual/1.1/user-guide/process-engine/error-handling/index.html
+++ b/manual/1.1/user-guide/process-engine/error-handling/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/expression-language/index.html b/manual/1.1/user-guide/process-engine/expression-language/index.html
index d971534a4..f0479f070 100644
--- a/manual/1.1/user-guide/process-engine/expression-language/index.html
+++ b/manual/1.1/user-guide/process-engine/expression-language/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/external-tasks/index.html b/manual/1.1/user-guide/process-engine/external-tasks/index.html
index e88d77a26..47df0f0cf 100644
--- a/manual/1.1/user-guide/process-engine/external-tasks/index.html
+++ b/manual/1.1/user-guide/process-engine/external-tasks/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/history/custom-implementation/index.html b/manual/1.1/user-guide/process-engine/history/custom-implementation/index.html
index 9bd8c08a7..1a9d99e6b 100644
--- a/manual/1.1/user-guide/process-engine/history/custom-implementation/index.html
+++ b/manual/1.1/user-guide/process-engine/history/custom-implementation/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/history/history-cleanup/index.html b/manual/1.1/user-guide/process-engine/history/history-cleanup/index.html
index de3342aa9..9558c8b78 100644
--- a/manual/1.1/user-guide/process-engine/history/history-cleanup/index.html
+++ b/manual/1.1/user-guide/process-engine/history/history-cleanup/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/history/history-configuration/index.html b/manual/1.1/user-guide/process-engine/history/history-configuration/index.html
index f16c2f712..7cd405fe1 100644
--- a/manual/1.1/user-guide/process-engine/history/history-configuration/index.html
+++ b/manual/1.1/user-guide/process-engine/history/history-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/history/index.html b/manual/1.1/user-guide/process-engine/history/index.html
index c02068c73..a3dec5ff4 100644
--- a/manual/1.1/user-guide/process-engine/history/index.html
+++ b/manual/1.1/user-guide/process-engine/history/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/history/user-operation-log/index.html b/manual/1.1/user-guide/process-engine/history/user-operation-log/index.html
index ff10d269c..95dff8db2 100644
--- a/manual/1.1/user-guide/process-engine/history/user-operation-log/index.html
+++ b/manual/1.1/user-guide/process-engine/history/user-operation-log/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/id-generator/index.html b/manual/1.1/user-guide/process-engine/id-generator/index.html
index c04ef8a8d..f4f8a0b89 100644
--- a/manual/1.1/user-guide/process-engine/id-generator/index.html
+++ b/manual/1.1/user-guide/process-engine/id-generator/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/identity-service/index.html b/manual/1.1/user-guide/process-engine/identity-service/index.html
index 15524d809..0a71a255c 100644
--- a/manual/1.1/user-guide/process-engine/identity-service/index.html
+++ b/manual/1.1/user-guide/process-engine/identity-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/incidents/index.html b/manual/1.1/user-guide/process-engine/incidents/index.html
index 9d8e5dc14..b0753684d 100644
--- a/manual/1.1/user-guide/process-engine/incidents/index.html
+++ b/manual/1.1/user-guide/process-engine/incidents/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/index.html b/manual/1.1/user-guide/process-engine/index.html
index 62fa77e3d..7b3153ed3 100644
--- a/manual/1.1/user-guide/process-engine/index.html
+++ b/manual/1.1/user-guide/process-engine/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/metrics/index.html b/manual/1.1/user-guide/process-engine/metrics/index.html
index 099d202fd..5bc19ea75 100644
--- a/manual/1.1/user-guide/process-engine/metrics/index.html
+++ b/manual/1.1/user-guide/process-engine/metrics/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/multi-tenancy/index.html b/manual/1.1/user-guide/process-engine/multi-tenancy/index.html
index bd182b31e..e775dd6ec 100644
--- a/manual/1.1/user-guide/process-engine/multi-tenancy/index.html
+++ b/manual/1.1/user-guide/process-engine/multi-tenancy/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/password-hashing/index.html b/manual/1.1/user-guide/process-engine/password-hashing/index.html
index e65f10c61..c2f221a40 100644
--- a/manual/1.1/user-guide/process-engine/password-hashing/index.html
+++ b/manual/1.1/user-guide/process-engine/password-hashing/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/password-policy/index.html b/manual/1.1/user-guide/process-engine/password-policy/index.html
index 02e9f305b..a06859c04 100644
--- a/manual/1.1/user-guide/process-engine/password-policy/index.html
+++ b/manual/1.1/user-guide/process-engine/password-policy/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-diagram-api/index.html b/manual/1.1/user-guide/process-engine/process-diagram-api/index.html
index 6b4ff6681..7c0d541d6 100644
--- a/manual/1.1/user-guide/process-engine/process-diagram-api/index.html
+++ b/manual/1.1/user-guide/process-engine/process-diagram-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-engine-api/index.html b/manual/1.1/user-guide/process-engine/process-engine-api/index.html
index d60e9a65e..51d5e3ea8 100644
--- a/manual/1.1/user-guide/process-engine/process-engine-api/index.html
+++ b/manual/1.1/user-guide/process-engine/process-engine-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-engine-bootstrapping/index.html b/manual/1.1/user-guide/process-engine/process-engine-bootstrapping/index.html
index 11025809d..e7a4b64ba 100644
--- a/manual/1.1/user-guide/process-engine/process-engine-bootstrapping/index.html
+++ b/manual/1.1/user-guide/process-engine/process-engine-bootstrapping/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-engine-concepts/index.html b/manual/1.1/user-guide/process-engine/process-engine-concepts/index.html
index 1cae86907..efde9c273 100644
--- a/manual/1.1/user-guide/process-engine/process-engine-concepts/index.html
+++ b/manual/1.1/user-guide/process-engine/process-engine-concepts/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-engine-plugins/index.html b/manual/1.1/user-guide/process-engine/process-engine-plugins/index.html
index 32719ba1e..0cee17718 100644
--- a/manual/1.1/user-guide/process-engine/process-engine-plugins/index.html
+++ b/manual/1.1/user-guide/process-engine/process-engine-plugins/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-instance-migration/index.html b/manual/1.1/user-guide/process-engine/process-instance-migration/index.html
index 1c14583fc..b7b2b1109 100644
--- a/manual/1.1/user-guide/process-engine/process-instance-migration/index.html
+++ b/manual/1.1/user-guide/process-engine/process-instance-migration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-instance-modification/index.html b/manual/1.1/user-guide/process-engine/process-instance-modification/index.html
index 3d0e160fe..c8e8ab080 100644
--- a/manual/1.1/user-guide/process-engine/process-instance-modification/index.html
+++ b/manual/1.1/user-guide/process-engine/process-instance-modification/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-instance-restart/index.html b/manual/1.1/user-guide/process-engine/process-instance-restart/index.html
index c2aacd38b..01b508afd 100644
--- a/manual/1.1/user-guide/process-engine/process-instance-restart/index.html
+++ b/manual/1.1/user-guide/process-engine/process-instance-restart/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/process-versioning/index.html b/manual/1.1/user-guide/process-engine/process-versioning/index.html
index e0f36b3b8..015cdf5b0 100644
--- a/manual/1.1/user-guide/process-engine/process-versioning/index.html
+++ b/manual/1.1/user-guide/process-engine/process-versioning/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/scripting/index.html b/manual/1.1/user-guide/process-engine/scripting/index.html
index b4b75e7b8..a4778b29f 100644
--- a/manual/1.1/user-guide/process-engine/scripting/index.html
+++ b/manual/1.1/user-guide/process-engine/scripting/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/securing-custom-code/index.html b/manual/1.1/user-guide/process-engine/securing-custom-code/index.html
index 5167db46e..e4e735b9f 100644
--- a/manual/1.1/user-guide/process-engine/securing-custom-code/index.html
+++ b/manual/1.1/user-guide/process-engine/securing-custom-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/templating/index.html b/manual/1.1/user-guide/process-engine/templating/index.html
index 59f781490..f5702c4ec 100644
--- a/manual/1.1/user-guide/process-engine/templating/index.html
+++ b/manual/1.1/user-guide/process-engine/templating/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/the-job-executor/index.html b/manual/1.1/user-guide/process-engine/the-job-executor/index.html
index 42236d554..66db6753f 100644
--- a/manual/1.1/user-guide/process-engine/the-job-executor/index.html
+++ b/manual/1.1/user-guide/process-engine/the-job-executor/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/time-zones/index.html b/manual/1.1/user-guide/process-engine/time-zones/index.html
index f543b9b2c..93999342c 100644
--- a/manual/1.1/user-guide/process-engine/time-zones/index.html
+++ b/manual/1.1/user-guide/process-engine/time-zones/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/transactions-in-processes/index.html b/manual/1.1/user-guide/process-engine/transactions-in-processes/index.html
index 0130a48de..e92c118a1 100644
--- a/manual/1.1/user-guide/process-engine/transactions-in-processes/index.html
+++ b/manual/1.1/user-guide/process-engine/transactions-in-processes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/process-engine/variables/index.html b/manual/1.1/user-guide/process-engine/variables/index.html
index f4413d75c..91a3d0af1 100644
--- a/manual/1.1/user-guide/process-engine/variables/index.html
+++ b/manual/1.1/user-guide/process-engine/variables/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/quarkus-integration/cdi-integration/index.html b/manual/1.1/user-guide/quarkus-integration/cdi-integration/index.html
index ffa08bc7c..d41f86f90 100644
--- a/manual/1.1/user-guide/quarkus-integration/cdi-integration/index.html
+++ b/manual/1.1/user-guide/quarkus-integration/cdi-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/quarkus-integration/configuration/index.html b/manual/1.1/user-guide/quarkus-integration/configuration/index.html
index 6a57fb998..1a2723dfa 100644
--- a/manual/1.1/user-guide/quarkus-integration/configuration/index.html
+++ b/manual/1.1/user-guide/quarkus-integration/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/quarkus-integration/deployments/index.html b/manual/1.1/user-guide/quarkus-integration/deployments/index.html
index 0e2d00c82..1c433a8cf 100644
--- a/manual/1.1/user-guide/quarkus-integration/deployments/index.html
+++ b/manual/1.1/user-guide/quarkus-integration/deployments/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/quarkus-integration/index.html b/manual/1.1/user-guide/quarkus-integration/index.html
index 43505f203..d9857216f 100644
--- a/manual/1.1/user-guide/quarkus-integration/index.html
+++ b/manual/1.1/user-guide/quarkus-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
@@ -3159,9 +3157,9 @@
<dependency>
<groupId>org.cibseven.bpm.quarkus</groupId>
<artifactId>cibseven-bpm-quarkus-engine</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
This will add the CIB seven engine version 1.1 to your dependencies.
+This will add the CIB seven engine version 1.1.0 to your dependencies.
Camunda supports the following deployment scenario:
If you configure the process engine in standalone.xml
and provide a custom configuration class packaged inside an own module, the camunda-wildfly-subsystem module needs to have a module dependency on the module providing the class.
If you fail to do this, you will see the following error log:
Caused by: org.cibseven.bpm.engine.ProcessEngineException: Could not load 'foo.bar': the class must be visible from the camunda-wildfly-subsystem module.
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.createProcessEngineConfiguration(MscManagedProcessEngineController.java:187) [camunda-wildfly-subsystem-1.1.jar:]
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.startProcessEngine(MscManagedProcessEngineController.java:138) [camunda-wildfly-subsystem-1.1.jar:]
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController$3.run(MscManagedProcessEngineController.java:126) [camunda-wildfly-subsystem-1.1.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.createProcessEngineConfiguration(MscManagedProcessEngineController.java:187) [camunda-wildfly-subsystem-1.1.0.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.startProcessEngine(MscManagedProcessEngineController.java:138) [camunda-wildfly-subsystem-1.1.0.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController$3.run(MscManagedProcessEngineController.java:126) [camunda-wildfly-subsystem-1.1.0.jar:]
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.de.
+CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.org.
Extra repository should be added to settings.xml
or to the POM file:
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
-
This will add the CIB seven engine 1.1 to your dependencies.
+This will add the CIB seven engine 1.1.0 to your dependencies.
Other starters that can be used are:
camunda-bpm-spring-boot-starter-rest
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-rest</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
By default the application path is engine-rest
, so without any further configuration you can access the api at http://localhost:8080/engine-rest
.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-webapp</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
By default the application path is /camunda
, so without any further configuration you can access
diff --git a/manual/1.1/user-guide/spring-framework-integration/configuration/index.html b/manual/1.1/user-guide/spring-framework-integration/configuration/index.html
index e3f66d51a..405060b44 100644
--- a/manual/1.1/user-guide/spring-framework-integration/configuration/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/spring-framework-integration/deployment/index.html b/manual/1.1/user-guide/spring-framework-integration/deployment/index.html
index 63a710831..dae822bc9 100644
--- a/manual/1.1/user-guide/spring-framework-integration/deployment/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/deployment/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/spring-framework-integration/expressions/index.html b/manual/1.1/user-guide/spring-framework-integration/expressions/index.html
index 928281263..7a3d70041 100644
--- a/manual/1.1/user-guide/spring-framework-integration/expressions/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/expressions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/spring-framework-integration/index.html b/manual/1.1/user-guide/spring-framework-integration/index.html
index 35600c33b..c6165073a 100644
--- a/manual/1.1/user-guide/spring-framework-integration/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/spring-framework-integration/testing/index.html b/manual/1.1/user-guide/spring-framework-integration/testing/index.html
index 818be97d3..149ee0299 100644
--- a/manual/1.1/user-guide/spring-framework-integration/testing/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/testing/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/1.1/user-guide/spring-framework-integration/transactions/index.html b/manual/1.1/user-guide/spring-framework-integration/transactions/index.html
index e75a61f50..4da44b2e8 100644
--- a/manual/1.1/user-guide/spring-framework-integration/transactions/index.html
+++ b/manual/1.1/user-guide/spring-framework-integration/transactions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
@@ -3151,7 +3149,7 @@
The following explains the SpringTransactionIntegrationTest of the core codebase step by step. Below is the Spring configuration file that we use in this example (you can find it in SpringTransactionIntegrationTest-context.xml). The section shown below contains the dataSource
, transactionManager
, processEngine
and the process engine services.
The following explains the SpringTransactionIntegrationTest of the core codebase step by step. Below is the Spring configuration file that we use in this example (you can find it in SpringTransactionIntegrationTest-context.xml). The section shown below contains the dataSource
, transactionManager
, processEngine
and the process engine services.
When passing the DataSource to the SpringProcessEngineConfiguration
(using property “dataSource”), the CIB seven engine uses a org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy
internally, which wraps the passed DataSource. This is done to make sure the SQL connections retrieved from the DataSource and the Spring transactions play well together. This implies that it’s no longer needed to proxy the dataSource yourself in Spring configuration, although it’s still allowed to pass a TransactionAwareDataSourceProxy
into the SpringProcessEngineConfiguration
. In this case no additional wrapping will occur.
Make sure when declaring a TransactionAwareDataSourceProxy
in Spring configuration yourself, that you don’t use it for resources that are already aware of Spring-transactions (e.g., DataSourceTransactionManager
and JPATransactionManager
need the un-proxied dataSource).
<beans xmlns="http://www.springframework.org/schema/beans"
diff --git a/manual/1.1/user-guide/task-forms/index.html b/manual/1.1/user-guide/task-forms/index.html
index 96adb342d..1e44dcfe1 100644
--- a/manual/1.1/user-guide/task-forms/index.html
+++ b/manual/1.1/user-guide/task-forms/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-bpm-junit5</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
<scope>test</scope>
</dependency>
The following code snippets show examples of how to use the extension.
@@ -3372,7 +3370,7 @@<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-bpm-assert</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
<scope>test</scope>
</dependency>
Also, you will have to add the AssertJ library to your dependencies. Make sure that the version is correct. You can find the correct version in the compatibility matrix below.
diff --git a/manual/1.1/webapps/admin/authorization-management/index.html b/manual/1.1/webapps/admin/authorization-management/index.html index ad7612f8e..032893c50 100644 --- a/manual/1.1/webapps/admin/authorization-management/index.html +++ b/manual/1.1/webapps/admin/authorization-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/webapps/admin/configuration/index.html b/manual/1.1/webapps/admin/configuration/index.html index 7a9acebe1..820963333 100644 --- a/manual/1.1/webapps/admin/configuration/index.html +++ b/manual/1.1/webapps/admin/configuration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/webapps/admin/group-management/index.html b/manual/1.1/webapps/admin/group-management/index.html index 6f660d454..1fdd10ae2 100644 --- a/manual/1.1/webapps/admin/group-management/index.html +++ b/manual/1.1/webapps/admin/group-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/webapps/admin/index.html b/manual/1.1/webapps/admin/index.html index ae01c91e1..b2cb9decf 100644 --- a/manual/1.1/webapps/admin/index.html +++ b/manual/1.1/webapps/admin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/webapps/admin/plugins/index.html b/manual/1.1/webapps/admin/plugins/index.html index 4a696ec53..92252cbbf 100644 --- a/manual/1.1/webapps/admin/plugins/index.html +++ b/manual/1.1/webapps/admin/plugins/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/1.1/webapps/admin/system-management/index.html b/manual/1.1/webapps/admin/system-management/index.html index 3a325b795..faf683e1f 100644 --- a/manual/1.1/webapps/admin/system-management/index.html +++ b/manual/1.1/webapps/admin/system-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3207,7 +3205,7 @@If you need to install Java Runtime Environment, you can find the download from Oracle here.
CIB seven comes with a maintained changelog file that Liquibase can consume.
This changelog defines which SQL statements to execute on a database.
-You can find the changelog and its referenced resources on our Artifact Repository.
+You can find the changelog and its referenced resources on our Artifact Repository.
Select the respective version ($PLATFORM_VERSION
) and download the resources as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$PLATFORM_VERSION/liquibase
folder to find the changelog.
+Open the cibseven-sql-scripts-$PLATFORM_VERSION/liquibase
folder to find the changelog.
In case you are using a pre-packaged distribution, the Liquibase resources already reside in the sql/liquibase
folder of the distribution.
The liquibase
folder contains the following resources:
To install the database schema required for CIB seven, we provide a set of scripts with prepared DDL statements.
-Those scripts create all required tables and default indices. You can find the provided SQL scripts on our Artifact Repository.
+Those scripts create all required tables and default indices. You can find the provided SQL scripts on our Artifact Repository.
Select the respective version ($PLATFORM_VERSION
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$PLATFORM_VERSION/create
folder to find all available scripts.
+Open the cibseven-sql-scripts-$PLATFORM_VERSION/create
folder to find all available scripts.
In case you are using a pre-packaged distribution, the SQL scripts already reside in the sql/create
folder of the distribution.
The create
folder contains the following SQL scripts:
Perform the following steps to update the database schema on your database instance:
$Y
) on our Artifact Repository and download the resources as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/liquibase
folder to find the changelog file.
+$Y
) on our Artifact Repository and download the resources as a zip
or tar.gz
file.
+Open the cibseven-sql-scripts-$Y/liquibase
folder to find the changelog file.
In case you are using a pre-packaged distribution, the Liquibase resources already reside in the sql/liquibase
folder of the distribution with version $Y
.camunda-changelog.xml
of version $Y
.
Liquibase takes care of determining the necessary changes and applying them to your database according to the new changelog.
@@ -3276,9 +3274,9 @@ Check for available database patch scripts for your database that are within the bounds of your update path.
-You can find the scripts on our Artifact Repository.
+You can find the scripts on our Artifact Repository.
Select the respective version you want to update to ($Y
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/upgrade
folder to find all available scripts.
+Open the cibseven-sql-scripts-$Y/upgrade
folder to find all available scripts.
In case you are using a pre-packaged distribution, the SQL scripts already reside in the sql/upgrade
folder of the distribution with version $Y
.
We highly recommend executing these patches before updating.
Execute those related to your database type ($DATABASENAME
) in ascending order by version number.
@@ -3726,9 +3724,9 @@
You can find the necessary scripts on our Artifact Repository. +
You can find the necessary scripts on our Artifact Repository.
Select the respective patch version you want to update to ($Y
) and download the scripts as a zip
or tar.gz
file.
-Open the camunda-sql-scripts-$Y/upgrade
folder to find all available patch scripts.
+Open the cibseven-sql-scripts-$Y/upgrade
folder to find all available patch scripts.
In case you are using a pre-packaged distribution, the SQL scripts reside in the sql/upgrade
folder of the distribution you want to update to.
The patch scripts are named $DATABASENAME_engine_$MINOR_patch_$A_to_$B
, with $A
being the patch level version to update from, $B
the patch level to update to, and $MINOR
the minor version they are on, e.g., 7.16
.
If you do choose to apply a database patch, then you must apply all patch scripts that are within the bounds of your update path. This means if your current patch version is X.X.1
and you update to X.X.5
you have to execute all patch scripts first where $A
≥ X.X.1
and $B
≤ X.X.5
.
Docker images can be found on GitHub and Docker Hub.
Please note that by default the Apache Tomcat distribution is used. For a guide on how to use one of the other distributions, see the tag schema.
-For example, tags like 1.1
or latest
without explicit distribution mark are delivering Tomcat version of CIB seven.
1.1.0
or latest
without explicit distribution mark are delivering Tomcat version of CIB seven.
To start CIB seven Run execute the following commands:
docker pull cibseven/cibseven:run-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:run-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:run-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:run-1.1.0
To start CIB seven Tomcat version, execute the following commands:
docker pull cibseven/cibseven:tomcat-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:tomcat-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:tomcat-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:tomcat-1.1.0
To start CIB seven Wildfly version, execute the following commands:
docker pull cibseven/cibseven:wildfly-latest
docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-latest
-
or following command to use explicit version 1.1:
-docker pull cibseven/cibseven:wildfly-1.1
-docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-1.1
+
or following command to use explicit version 1.1.0:
+docker pull cibseven/cibseven:wildfly-1.1.0
+docker run -d --name cibseven -p 8080:8080 cibseven/cibseven:wildfly-1.1.0
camunda-webapp-wildfly-1.1.war
.camunda-webapp-jboss-1.1.war
.cibseven-webapp-wildfly-1.1.0.war
.cibseven-webapp-jboss-1.1.0.war
.Copy the modules from the modules/
folder of the CIB seven distribution, or extract the camunda-wildfly-modules
archive, to the $WILDFLY_HOME/modules/
of your WildFly application server.
camunda-engine-rest-jakarta-1.1-wildfly.war
.camunda-engine-rest-1.1-wildfly.war
.cibseven-engine-rest-jakarta-1.1.0-wildfly.war
.cibseven-engine-rest-1.1.0-wildfly.war
./engine-rest
).
@@ -3291,13 +3289,13 @@ /engine-rest
.Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/bpm/camunda-engine-plugin-connect
org/cibseven/commons/camunda-commons-utils
org/cibseven/bpm/cibseven-engine-plugin-connect
org/cibseven/commons/cibeven-commons-utils
To activate Camunda Connect functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
To activate CIB seven Connect functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
<subsystem xmlns="urn:org.cibseven.bpm.jboss:1.1">
...
<process-engines>
@@ -3314,31 +3312,31 @@ Camunda Connect Plugin
</process-engines>
...
</subsystem>
-
You can use the Camunda Spin plugin to extend the engine functionality to de-/serialize object variables from and to JSON and XML. For more information, see the Spin Reference.
+You can use the Spin plugin to extend the engine functionality to de-/serialize object variables from and to JSON and XML. For more information, see the Spin Reference.
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/spin/camunda-spin-core
org/cibseven/spin/camunda-spin-dataformat-json-jackson
org/cibseven/spin/camunda-spin-dataformat-xml-dom-jakarta
+org/cibseven/spin/cibseven-spin-core
org/cibseven/spin/cibseven-spin-dataformat-json-jackson
org/cibseven/spin/cibseven-spin-dataformat-xml-dom-jakarta
org/cibseven/spin/camunda-spin-dataformat-xml-dom
+org/cibseven/spin/cibseven-spin-dataformat-xml-dom
org/cibseven/bpm/camunda-engine-plugin-spin
org/cibseven/commons/camunda-commons-utils
org/cibseven/bpm/cibseven-engine-plugin-spin
org/cibseven/commons/cibseven-commons-utils
com/fasterxml/jackson/core/jackson-core
com/fasterxml/jackson/core/jackson-databind
com/fasterxml/jackson/core/jackson-annotations
com/jayway/jsonpath/json-path
In order to activate Camunda Spin functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
In order to activate Spin functionality for a process engine, a process engine plugin has to be registered in $WILDFLY_HOME/standalone/configuration/standalone.xml
as follows:
<subsystem xmlns="urn:org.cibseven.bpm.jboss:1.1">
...
<process-engines>
@@ -3356,14 +3354,14 @@ Setup Spin
...
</subsystem>
The usage of Jackson annotations on WildFly together with the Camunda Spin JSON serialization can lead to problems. +
The usage of Jackson annotations on WildFly together with the Spin JSON serialization can lead to problems. WildFly implicitly adds the JAX-RS subsystem to each new deployment, if JAX-RS annotations are present (see the WildFly documentation for more information). -This JAX-RS subsystem includes the Jackson library, the version of which does not match with the version used by the Camunda SPIN Plugin. +This JAX-RS subsystem includes the Jackson library, the version of which does not match with the version used by the SPIN Plugin. As a result, Jackson annotations will be ignored. Note that this problem does not necessarily have to emerge upon direct usage of Spin. -The Spin plugin also comes into play when JSON variables are set or read by the Camunda Process Engine.
+The Spin plugin also comes into play when JSON variables are set or read by the CIB seven Process Engine.See one of the following ways to fix this:
main
slot to the version which is used by the Camunda Spin Plugin.main
slot to the version which is used by the Spin Plugin.jboss-deployment-structure.xml
file to you application in the WEB-INF folder.See this Camunda Forum Post for other approaches and information.
Camunda Spin is not available in scripts if a process definition is deployed via REST API. Because WildFly handles dependencies using its module system and CIB seven engine module has no module dependency on the spin module.
+Spin is not available in scripts if a process definition is deployed via REST API. Because WildFly handles dependencies using its module system and CIB seven engine module has no module dependency on the spin module.
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
org/cibseven/template-engines/camunda-template-engines-freemarker
org/cibseven/template-engines/cibseven-template-engines-freemarker
org/freemarker/freemarker
org/cibseven/commons/camunda-commons-logging
org/cibseven/commons/camunda-commons-utils
org/cibseven/commons/cibseven-commons-logging
org/cibseven/commons/cibseven-commons-utils
Add the following modules (if not existing) from the folder $WILDFLY_DISTRIBUTION/modules/
to the folder $WILDFLY_HOME/modules/
:
This section describes how you can install CIB seven and its components on a vanilla Apache Tomcat, if you are not able to use the pre-packaged Tomcat distribution. In addition, download a Tomcat distribution to fetch the required CIB seven modules.
+This section describes how you can install CIB seven and its components on a vanilla Apache Tomcat, if you are not able to use the pre-packaged Tomcat distribution. In addition, download a Tomcat distribution to fetch the required CIB seven modules.
The following steps are required to deploy the applications:
Download the CIB seven web application that contains both applications from our Artifact Repository.
-Choose the correct version named camunda-engine-rest-1.1-tomcat.war
.
Download the CIB seven web application that contains both applications from our Artifact Repository.
+Choose the correct version named cibseven-engine-rest-1.1.0-tomcat.war
.
camunda-engine-rest-jakarta-1.1-tomcat.war
.camunda-engine-rest-1.1-tomcat.war
.cibseven-engine-rest-jakarta-1.1.0-tomcat.war
.cibseven-engine-rest-1.1.0-tomcat.war
.Copy the war file to $TOMCAT_HOME/webapps/camunda.war
.
+
Copy the war file to $TOMCAT_HOME/webapps/cibseven.war
.
Optionally you may name it differently or extract it to a folder to deploy it to a different context path.
The following steps are required to deploy the REST API:
$TOMCAT_HOME/webapps
.
Optionally you may rename it or extract it to a folder to deploy it to a specific context like /engine-rest
./engine-rest
.Add the following artifacts (if not existing) from the folder $TOMCAT_DISTRIBUTION/lib/
to the folder $TOMCAT_HOME/lib/
:
camunda-engine-plugin-connect-$PLATFORM_VERSION.jar
camunda-commons-utils-$PLATFORM_VERSION.jar
cibseven-engine-plugin-connect-$PLATFORM_VERSION.jar
cibseven-commons-utils-$PLATFORM_VERSION.jar
In order to activate Camunda Connect functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
In order to activate CIB seven Connect functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
<?xml version="1.0" encoding="UTF-8"?>
<bpm-platform ...>
<process-engine name="default">
@@ -3319,15 +3317,15 @@ Camunda Connect Plugin
</process-engine>
</bpm-platform>
-
Add the following artifacts (if not existing) from the folder $TOMCAT_DISTRIBUTION/lib/
to the folder $TOMCAT_HOME/lib/
:
camunda-spin-dataformat-all-$PLATFORM_VERSION.jar
camunda-spin-core-$PLATFORM_VERSION.jar
camunda-engine-plugin-spin-$PLATFORM_VERSION.jar
camunda-commons-utils-$PLATFORM_VERSION.jar
cibseven-spin-dataformat-all-$PLATFORM_VERSION.jar
cibseven-spin-core-$PLATFORM_VERSION.jar
cibseven-engine-plugin-spin-$PLATFORM_VERSION.jar
cibseven-commons-utils-$PLATFORM_VERSION.jar
In order to activate Camunda Spin functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
In order to activate Spin functionality for a process engine, a process engine plugin has to be registered in $TOMCAT_HOME/conf/bpm-platform.xml
as follows:
<?xml version="1.0" encoding="UTF-8"?>
<bpm-platform ...>
...
@@ -3392,8 +3390,8 @@ On this Page:
- Cockpit, Tasklist and Admin
- REST API
- - Camunda Connect Plugin
- - Camunda Spin
+ - CIB seven Connect Plugin
+ - Spin
- Groovy Scripting
- Freemarker Integration
- GraalVM JavaScript Integration
diff --git a/manual/latest/installation/full/tomcat/pre-packaged/index.html b/manual/latest/installation/full/tomcat/pre-packaged/index.html
index 93a434865..a532c2379 100644
--- a/manual/latest/installation/full/tomcat/pre-packaged/index.html
+++ b/manual/latest/installation/full/tomcat/pre-packaged/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
camunda-welcome.bat
or by using the $TOMCAT_HOME/bin/startup.{bat/sh}
script.cibseven-welcome.bat
or by using the $TOMCAT_HOME/bin/startup.{bat/sh}
script.Please note that the environments listed in this section depend on the version of CIB seven. Please select the corresponding version of this documentation to see the environment that fits to your version of CIB seven. e.g., supported environments for version 1.1
+Please note that the environments listed in this section depend on the version of CIB seven. Please select the corresponding version of this documentation to see the environment that fits to your version of CIB seven. e.g., supported environments for version 1.1
The documentation is shipped as a single openapi.json
file archived in a jar artifact.
-Download the Camunda REST API artifact containing the OpenAPI documentation here. Choose the correct version and then download the jar
file.
jar
file.
Alternatively, you can obtain this artifact with the following Maven coordinates:
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-engine-rest-openapi</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
To generate REST API client in the language of your preference based on the OpenAPI documentation, diff --git a/manual/latest/reference/rest/overview/authentication/index.html b/manual/latest/reference/rest/overview/authentication/index.html index 1e314a71b..fa0c77d8e 100644 --- a/manual/latest/reference/rest/overview/authentication/index.html +++ b/manual/latest/reference/rest/overview/authentication/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/date-format/index.html b/manual/latest/reference/rest/overview/date-format/index.html index 764e4c472..22d3fc55b 100644 --- a/manual/latest/reference/rest/overview/date-format/index.html +++ b/manual/latest/reference/rest/overview/date-format/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/distro-use/index.html b/manual/latest/reference/rest/overview/distro-use/index.html index 3b8ad708b..200dc50d6 100644 --- a/manual/latest/reference/rest/overview/distro-use/index.html +++ b/manual/latest/reference/rest/overview/distro-use/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/embeddability/index.html b/manual/latest/reference/rest/overview/embeddability/index.html index 4c7b8ba52..e128182fb 100644 --- a/manual/latest/reference/rest/overview/embeddability/index.html +++ b/manual/latest/reference/rest/overview/embeddability/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/hal/index.html b/manual/latest/reference/rest/overview/hal/index.html index bea6d80db..02eaccb71 100644 --- a/manual/latest/reference/rest/overview/hal/index.html +++ b/manual/latest/reference/rest/overview/hal/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/index.html b/manual/latest/reference/rest/overview/index.html index 3fd8a9091..cb614f105 100644 --- a/manual/latest/reference/rest/overview/index.html +++ b/manual/latest/reference/rest/overview/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/rest/overview/variables/index.html b/manual/latest/reference/rest/overview/variables/index.html index 23aee789b..a49b791cb 100644 --- a/manual/latest/reference/rest/overview/variables/index.html +++ b/manual/latest/reference/rest/overview/variables/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/extending-spin/index.html b/manual/latest/reference/spin/extending-spin/index.html index efa427078..b35933aaf 100644 --- a/manual/latest/reference/spin/extending-spin/index.html +++ b/manual/latest/reference/spin/extending-spin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/index.html b/manual/latest/reference/spin/index.html index f8711d182..4149226f8 100644 --- a/manual/latest/reference/spin/index.html +++ b/manual/latest/reference/spin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3175,7 +3173,7 @@
CIB seven’s version of Spin is published to artifacts.cibseven.de. See the instruction how to use it.
+CIB seven’s version of Spin is published to artifacts.cibseven.org. See the instruction how to use it.
diff --git a/manual/latest/reference/spin/json/01-reading-json/index.html b/manual/latest/reference/spin/json/01-reading-json/index.html index fb638a8b1..d974fe8e4 100644 --- a/manual/latest/reference/spin/json/01-reading-json/index.html +++ b/manual/latest/reference/spin/json/01-reading-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/json/02-writing-json/index.html b/manual/latest/reference/spin/json/02-writing-json/index.html index 7b61087be..9f3f87019 100644 --- a/manual/latest/reference/spin/json/02-writing-json/index.html +++ b/manual/latest/reference/spin/json/02-writing-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/json/03-querying-json/index.html b/manual/latest/reference/spin/json/03-querying-json/index.html index 5a7781be3..e7402573c 100644 --- a/manual/latest/reference/spin/json/03-querying-json/index.html +++ b/manual/latest/reference/spin/json/03-querying-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/json/04-mapping-json/index.html b/manual/latest/reference/spin/json/04-mapping-json/index.html index 215feee12..24baec609 100644 --- a/manual/latest/reference/spin/json/04-mapping-json/index.html +++ b/manual/latest/reference/spin/json/04-mapping-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/json/05-configuring-json/index.html b/manual/latest/reference/spin/json/05-configuring-json/index.html index 95f55ce30..d1a6f9c69 100644 --- a/manual/latest/reference/spin/json/05-configuring-json/index.html +++ b/manual/latest/reference/spin/json/05-configuring-json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/json/index.html b/manual/latest/reference/spin/json/index.html index 28e880247..c973bd4c2 100644 --- a/manual/latest/reference/spin/json/index.html +++ b/manual/latest/reference/spin/json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/01-reading-xml/index.html b/manual/latest/reference/spin/xml/01-reading-xml/index.html index 36288641a..b03de9b03 100644 --- a/manual/latest/reference/spin/xml/01-reading-xml/index.html +++ b/manual/latest/reference/spin/xml/01-reading-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/02-manipulating-xml/index.html b/manual/latest/reference/spin/xml/02-manipulating-xml/index.html index ff807fffe..b36250a21 100644 --- a/manual/latest/reference/spin/xml/02-manipulating-xml/index.html +++ b/manual/latest/reference/spin/xml/02-manipulating-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/03-writing-xml/index.html b/manual/latest/reference/spin/xml/03-writing-xml/index.html index c35b644c3..7804b00dc 100644 --- a/manual/latest/reference/spin/xml/03-writing-xml/index.html +++ b/manual/latest/reference/spin/xml/03-writing-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/04-querying-xml/index.html b/manual/latest/reference/spin/xml/04-querying-xml/index.html index e6cae22dc..e6b3d1732 100644 --- a/manual/latest/reference/spin/xml/04-querying-xml/index.html +++ b/manual/latest/reference/spin/xml/04-querying-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/05-mapping-xml/index.html b/manual/latest/reference/spin/xml/05-mapping-xml/index.html index a54d12b92..e4ee092df 100644 --- a/manual/latest/reference/spin/xml/05-mapping-xml/index.html +++ b/manual/latest/reference/spin/xml/05-mapping-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/06-configuring-xml/index.html b/manual/latest/reference/spin/xml/06-configuring-xml/index.html index bf1d71d52..a989c8519 100644 --- a/manual/latest/reference/spin/xml/06-configuring-xml/index.html +++ b/manual/latest/reference/spin/xml/06-configuring-xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/reference/spin/xml/index.html b/manual/latest/reference/spin/xml/index.html index bbaa09d1b..6c93dca1c 100644 --- a/manual/latest/reference/spin/xml/index.html +++ b/manual/latest/reference/spin/xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/update/activiti/index.html b/manual/latest/update/activiti/index.html index 9a09aed10..4fde38f3e 100644 --- a/manual/latest/update/activiti/index.html +++ b/manual/latest/update/activiti/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/update/index.html b/manual/latest/update/index.html index ec0cbd725..770c39abc 100644 --- a/manual/latest/update/index.html +++ b/manual/latest/update/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/update/rolling-update/index.html b/manual/latest/update/rolling-update/index.html index 15e2e4af6..7871c3c2d 100644 --- a/manual/latest/update/rolling-update/index.html +++ b/manual/latest/update/rolling-update/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/built-in-beans/index.html b/manual/latest/user-guide/cdi-java-ee-integration/built-in-beans/index.html index 73d6c8411..fad50d6b7 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/built-in-beans/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/built-in-beans/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html b/manual/latest/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html index df2b5b0ea..4718614ca 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/contextual-programming-model/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/expression-resolving/index.html b/manual/latest/user-guide/cdi-java-ee-integration/expression-resolving/index.html index db6ada3e4..34ba82059 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/expression-resolving/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/expression-resolving/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/index.html b/manual/latest/user-guide/cdi-java-ee-integration/index.html index 0918fbda7..b13f0a057 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html b/manual/latest/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html index d3a087da1..c182b660b 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/jta-transaction-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html b/manual/latest/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html index 0f1208322..e619dd76b 100644 --- a/manual/latest/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html +++ b/manual/latest/user-guide/cdi-java-ee-integration/the-cdi-event-bridge/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/cibseven-run/index.html b/manual/latest/user-guide/cibseven-run/index.html index 157a4299a..300ed6ecd 100644 --- a/manual/latest/user-guide/cibseven-run/index.html +++ b/manual/latest/user-guide/cibseven-run/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3168,7 +3166,7 @@To start with CIB seven Run, download the distribution and unpacking it. You will find the following structure:
+To start with CIB seven Run, download the distribution and unpacking it. You will find the following structure:
cibseven-run
├── configuration/
│ ├── keystore/
@@ -3285,7 +3283,7 @@ Connect to a Database
In the unpacked distro, you will find a resources
folder. All files (including BPMN, DMN, CMMN, form, and script files) will be deployed when you start CIB seven Run.
You can reference forms and scripts in the BPMN diagram with embedded:deployment:/my-form.html
, camunda-forms:deployment:/myform.form
, or deployment:/my-script.js
. The deployment requires adding an extra /
as a prefix to the filename.
You can reference forms and scripts in the BPMN diagram with embedded:deployment:/my-form.html
, cibseven-forms:deployment:/myform.form
, or deployment:/my-script.js
. The deployment requires adding an extra /
as a prefix to the filename.
Deployments via the REST API are still possible.
Just like all the other distros, you can tailor CIB seven Run to your needs. To do this, you only have to edit one of the configuration files that you can find in the configuration folder.
diff --git a/manual/latest/user-guide/data-formats/configuring-spin-integration/index.html b/manual/latest/user-guide/data-formats/configuring-spin-integration/index.html index 78cb0ac4c..54c23bcbc 100644 --- a/manual/latest/user-guide/data-formats/configuring-spin-integration/index.html +++ b/manual/latest/user-guide/data-formats/configuring-spin-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/data-formats/data-formats-in-processes/index.html b/manual/latest/user-guide/data-formats/data-formats-in-processes/index.html index 0a53e5e52..ff07b8c4c 100644 --- a/manual/latest/user-guide/data-formats/data-formats-in-processes/index.html +++ b/manual/latest/user-guide/data-formats/data-formats-in-processes/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/data-formats/index.html b/manual/latest/user-guide/data-formats/index.html index d48c34ed9..538534ebd 100644 --- a/manual/latest/user-guide/data-formats/index.html +++ b/manual/latest/user-guide/data-formats/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/data-formats/json/index.html b/manual/latest/user-guide/data-formats/json/index.html index 8dda48950..6dab65029 100644 --- a/manual/latest/user-guide/data-formats/json/index.html +++ b/manual/latest/user-guide/data-formats/json/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/data-formats/xml/index.html b/manual/latest/user-guide/data-formats/xml/index.html index 23b1d813b..5d95c0645 100644 --- a/manual/latest/user-guide/data-formats/xml/index.html +++ b/manual/latest/user-guide/data-formats/xml/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/data-types/index.html b/manual/latest/user-guide/dmn-engine/data-types/index.html index ed6d86922..1f3b3ce3a 100644 --- a/manual/latest/user-guide/dmn-engine/data-types/index.html +++ b/manual/latest/user-guide/dmn-engine/data-types/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/embed/index.html b/manual/latest/user-guide/dmn-engine/embed/index.html index f6e1f556a..63fcc3205 100644 --- a/manual/latest/user-guide/dmn-engine/embed/index.html +++ b/manual/latest/user-guide/dmn-engine/embed/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/evaluate-decisions/index.html b/manual/latest/user-guide/dmn-engine/evaluate-decisions/index.html index 2412f3375..b798ddfd1 100644 --- a/manual/latest/user-guide/dmn-engine/evaluate-decisions/index.html +++ b/manual/latest/user-guide/dmn-engine/evaluate-decisions/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/expressions-and-scripts/index.html b/manual/latest/user-guide/dmn-engine/expressions-and-scripts/index.html index 8cdc12527..783d41664 100644 --- a/manual/latest/user-guide/dmn-engine/expressions-and-scripts/index.html +++ b/manual/latest/user-guide/dmn-engine/expressions-and-scripts/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/feel/custom-functions/index.html b/manual/latest/user-guide/dmn-engine/feel/custom-functions/index.html index efdb053ea..7007194a7 100644 --- a/manual/latest/user-guide/dmn-engine/feel/custom-functions/index.html +++ b/manual/latest/user-guide/dmn-engine/feel/custom-functions/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/feel/index.html b/manual/latest/user-guide/dmn-engine/feel/index.html index d78fe0199..ff0437341 100644 --- a/manual/latest/user-guide/dmn-engine/feel/index.html +++ b/manual/latest/user-guide/dmn-engine/feel/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/feel/legacy-behavior/index.html b/manual/latest/user-guide/dmn-engine/feel/legacy-behavior/index.html index e7dc178d2..995f0d5c4 100644 --- a/manual/latest/user-guide/dmn-engine/feel/legacy-behavior/index.html +++ b/manual/latest/user-guide/dmn-engine/feel/legacy-behavior/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/feel/spin-integration/index.html b/manual/latest/user-guide/dmn-engine/feel/spin-integration/index.html index 0d9acdcc0..edae87119 100644 --- a/manual/latest/user-guide/dmn-engine/feel/spin-integration/index.html +++ b/manual/latest/user-guide/dmn-engine/feel/spin-integration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/feel/type-handling/index.html b/manual/latest/user-guide/dmn-engine/feel/type-handling/index.html index 2d9d743f7..00a483855 100644 --- a/manual/latest/user-guide/dmn-engine/feel/type-handling/index.html +++ b/manual/latest/user-guide/dmn-engine/feel/type-handling/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/index.html b/manual/latest/user-guide/dmn-engine/index.html index 25555db57..c1cc5fa28 100644 --- a/manual/latest/user-guide/dmn-engine/index.html +++ b/manual/latest/user-guide/dmn-engine/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/dmn-engine/testing/index.html b/manual/latest/user-guide/dmn-engine/testing/index.html index 26a9615cb..d128fd09c 100644 --- a/manual/latest/user-guide/dmn-engine/testing/index.html +++ b/manual/latest/user-guide/dmn-engine/testing/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/ext-client/compatibility-matrix/index.html b/manual/latest/user-guide/ext-client/compatibility-matrix/index.html index fd809b4e9..f8c8cda14 100644 --- a/manual/latest/user-guide/ext-client/compatibility-matrix/index.html +++ b/manual/latest/user-guide/ext-client/compatibility-matrix/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/user-guide/ext-client/index.html b/manual/latest/user-guide/ext-client/index.html index 8ab5cf0c8..b4fca20ae 100644 --- a/manual/latest/user-guide/ext-client/index.html +++ b/manual/latest/user-guide/ext-client/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3284,7 +3282,7 @@Complete examples of how to set up the different External Task Clients can be found on Camunda’s GitHub (Java, +
Complete examples of how to set up the different External Task Clients can be found on Camunda’s GitHub (Java, JavaScript).
For a high throughput of external tasks, you should balance between the number of external task instances, the number of clients and the duration of handling the work.
diff --git a/manual/latest/user-guide/ext-client/spring-boot-starter/index.html b/manual/latest/user-guide/ext-client/spring-boot-starter/index.html index b880c970c..bb2691ba7 100644 --- a/manual/latest/user-guide/ext-client/spring-boot-starter/index.html +++ b/manual/latest/user-guide/ext-client/spring-boot-starter/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3156,7 +3154,7 @@<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-external-task-client</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
Please check Camunda External Task Client Spring Boot Starter Examples.
The Client can subscribe to one or more topic names that are defined in your BPMN process model. @@ -3637,7 +3635,7 @@
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-external-task-client-spring</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
To bootstrap the Client, use the class annotation @EnableExternalTaskClient
. You can find all
configuration attributes in the
diff --git a/manual/latest/user-guide/index.html b/manual/latest/user-guide/index.html
index a13b400a4..01cba737f 100644
--- a/manual/latest/user-guide/index.html
+++ b/manual/latest/user-guide/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/logging/index.html b/manual/latest/user-guide/logging/index.html
index 9ef882f21..a9e6744de 100644
--- a/manual/latest/user-guide/logging/index.html
+++ b/manual/latest/user-guide/logging/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/create-a-model/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/create-a-model/index.html
index 49d9843e2..71d0fe1b3 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/create-a-model/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/delegation-code/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/delegation-code/index.html
index 4eb9e2476..25f9563b4 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/delegation-code/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/extension-elements/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/extension-elements/index.html
index 006aa4770..af173241b 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/extension-elements/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/extension-elements/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
index c1a01504a..01fc8902c 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/fluent-builder-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/index.html
index 383a3f55f..9c104f4d4 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/read-a-model/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/read-a-model/index.html
index c5b073307..5d63b37bc 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/read-a-model/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/bpmn-model-api/respository-service/index.html b/manual/latest/user-guide/model-api/bpmn-model-api/respository-service/index.html
index 000f29ce5..0d0a1f8e5 100644
--- a/manual/latest/user-guide/model-api/bpmn-model-api/respository-service/index.html
+++ b/manual/latest/user-guide/model-api/bpmn-model-api/respository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/create-a-model/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/create-a-model/index.html
index 0faad1ef9..1d36ea3d3 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/create-a-model/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/delegation-code/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/delegation-code/index.html
index 7393836f9..ab42e4320 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/delegation-code/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/extension-elements/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/extension-elements/index.html
index c5d84a095..071c688ec 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/extension-elements/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/extension-elements/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/index.html
index d552b790a..81a7e5bd6 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/limitations/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/limitations/index.html
index f7f86f2b5..2791b0641 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/limitations/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/limitations/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/read-a-model/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/read-a-model/index.html
index 730b5aede..dbb910b0d 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/read-a-model/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/cmmn-model-api/repository-service/index.html b/manual/latest/user-guide/model-api/cmmn-model-api/repository-service/index.html
index 042128a6f..69374d671 100644
--- a/manual/latest/user-guide/model-api/cmmn-model-api/repository-service/index.html
+++ b/manual/latest/user-guide/model-api/cmmn-model-api/repository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/dmn-model-api/create-a-model/index.html b/manual/latest/user-guide/model-api/dmn-model-api/create-a-model/index.html
index 3b8715eb6..c26980d04 100644
--- a/manual/latest/user-guide/model-api/dmn-model-api/create-a-model/index.html
+++ b/manual/latest/user-guide/model-api/dmn-model-api/create-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/dmn-model-api/extension-attributes/index.html b/manual/latest/user-guide/model-api/dmn-model-api/extension-attributes/index.html
index cbc72e2e1..c56f3a135 100644
--- a/manual/latest/user-guide/model-api/dmn-model-api/extension-attributes/index.html
+++ b/manual/latest/user-guide/model-api/dmn-model-api/extension-attributes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/dmn-model-api/index.html b/manual/latest/user-guide/model-api/dmn-model-api/index.html
index 8d8e4f893..01b93c9fe 100644
--- a/manual/latest/user-guide/model-api/dmn-model-api/index.html
+++ b/manual/latest/user-guide/model-api/dmn-model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/dmn-model-api/read-a-model/index.html b/manual/latest/user-guide/model-api/dmn-model-api/read-a-model/index.html
index 9027859bd..60478b90e 100644
--- a/manual/latest/user-guide/model-api/dmn-model-api/read-a-model/index.html
+++ b/manual/latest/user-guide/model-api/dmn-model-api/read-a-model/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/dmn-model-api/repository-service/index.html b/manual/latest/user-guide/model-api/dmn-model-api/repository-service/index.html
index 193760bcd..f5737fe62 100644
--- a/manual/latest/user-guide/model-api/dmn-model-api/repository-service/index.html
+++ b/manual/latest/user-guide/model-api/dmn-model-api/repository-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/model-api/index.html b/manual/latest/user-guide/model-api/index.html
index 201431a7a..ba896d7f0 100644
--- a/manual/latest/user-guide/model-api/index.html
+++ b/manual/latest/user-guide/model-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/index.html b/manual/latest/user-guide/process-applications/index.html
index e58a92ca8..a225494f1 100644
--- a/manual/latest/user-guide/process-applications/index.html
+++ b/manual/latest/user-guide/process-applications/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/maven-archetypes/index.html b/manual/latest/user-guide/process-applications/maven-archetypes/index.html
index a657b43af..01504471a 100644
--- a/manual/latest/user-guide/process-applications/maven-archetypes/index.html
+++ b/manual/latest/user-guide/process-applications/maven-archetypes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/process-application-event-listeners/index.html b/manual/latest/user-guide/process-applications/process-application-event-listeners/index.html
index 967a56b1a..34fd4bb00 100644
--- a/manual/latest/user-guide/process-applications/process-application-event-listeners/index.html
+++ b/manual/latest/user-guide/process-applications/process-application-event-listeners/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/process-application-resources/index.html b/manual/latest/user-guide/process-applications/process-application-resources/index.html
index 60c9c9c1d..e44bd6315 100644
--- a/manual/latest/user-guide/process-applications/process-application-resources/index.html
+++ b/manual/latest/user-guide/process-applications/process-application-resources/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/the-process-application-class/index.html b/manual/latest/user-guide/process-applications/the-process-application-class/index.html
index d9661f0fc..4eb7c1946 100644
--- a/manual/latest/user-guide/process-applications/the-process-application-class/index.html
+++ b/manual/latest/user-guide/process-applications/the-process-application-class/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html b/manual/latest/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
index cafcfbecb..42c4281b9 100644
--- a/manual/latest/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
+++ b/manual/latest/user-guide/process-applications/the-processes-xml-deployment-descriptor/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/authorization-service/index.html b/manual/latest/user-guide/process-engine/authorization-service/index.html
index 9572f3a2e..8a02dbc65 100644
--- a/manual/latest/user-guide/process-engine/authorization-service/index.html
+++ b/manual/latest/user-guide/process-engine/authorization-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/batch-operations/index.html b/manual/latest/user-guide/process-engine/batch-operations/index.html
index e06d98bc9..4ecc34839 100644
--- a/manual/latest/user-guide/process-engine/batch-operations/index.html
+++ b/manual/latest/user-guide/process-engine/batch-operations/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/batch/index.html b/manual/latest/user-guide/process-engine/batch/index.html
index 09a0d873b..1e226e547 100644
--- a/manual/latest/user-guide/process-engine/batch/index.html
+++ b/manual/latest/user-guide/process-engine/batch/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/connectors/index.html b/manual/latest/user-guide/process-engine/connectors/index.html
index fee42491d..21f56c3a8 100644
--- a/manual/latest/user-guide/process-engine/connectors/index.html
+++ b/manual/latest/user-guide/process-engine/connectors/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/database-configuration/index.html b/manual/latest/user-guide/process-engine/database/database-configuration/index.html
index 88b0278f6..a4c62626b 100644
--- a/manual/latest/user-guide/process-engine/database/database-configuration/index.html
+++ b/manual/latest/user-guide/process-engine/database/database-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/database-schema/index.html b/manual/latest/user-guide/process-engine/database/database-schema/index.html
index 410762769..9f65bfe24 100644
--- a/manual/latest/user-guide/process-engine/database/database-schema/index.html
+++ b/manual/latest/user-guide/process-engine/database/database-schema/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/index.html b/manual/latest/user-guide/process-engine/database/index.html
index ec49ecd4f..e7a1c678c 100644
--- a/manual/latest/user-guide/process-engine/database/index.html
+++ b/manual/latest/user-guide/process-engine/database/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/mssql-configuration/index.html b/manual/latest/user-guide/process-engine/database/mssql-configuration/index.html
index f71527134..2970bda3a 100644
--- a/manual/latest/user-guide/process-engine/database/mssql-configuration/index.html
+++ b/manual/latest/user-guide/process-engine/database/mssql-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/mysql-configuration/index.html b/manual/latest/user-guide/process-engine/database/mysql-configuration/index.html
index 33018e721..44e93dd63 100644
--- a/manual/latest/user-guide/process-engine/database/mysql-configuration/index.html
+++ b/manual/latest/user-guide/process-engine/database/mysql-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/database/performance/index.html b/manual/latest/user-guide/process-engine/database/performance/index.html
index ee441b310..1c27c0381 100644
--- a/manual/latest/user-guide/process-engine/database/performance/index.html
+++ b/manual/latest/user-guide/process-engine/database/performance/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/bpmn-cmmn/index.html b/manual/latest/user-guide/process-engine/decisions/bpmn-cmmn/index.html
index fb5021193..d10d79e03 100644
--- a/manual/latest/user-guide/process-engine/decisions/bpmn-cmmn/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/bpmn-cmmn/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/configuration/index.html b/manual/latest/user-guide/process-engine/decisions/configuration/index.html
index 6bfab4a1f..2f8a2c56f 100644
--- a/manual/latest/user-guide/process-engine/decisions/configuration/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/decision-service/index.html b/manual/latest/user-guide/process-engine/decisions/decision-service/index.html
index 929221850..749290a19 100644
--- a/manual/latest/user-guide/process-engine/decisions/decision-service/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/decision-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/history/index.html b/manual/latest/user-guide/process-engine/decisions/history/index.html
index 771f3ab04..27695d1cb 100644
--- a/manual/latest/user-guide/process-engine/decisions/history/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/history/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/index.html b/manual/latest/user-guide/process-engine/decisions/index.html
index 8448d2782..68eda13eb 100644
--- a/manual/latest/user-guide/process-engine/decisions/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/decisions/repository/index.html b/manual/latest/user-guide/process-engine/decisions/repository/index.html
index 637a9e905..0212081ec 100644
--- a/manual/latest/user-guide/process-engine/decisions/repository/index.html
+++ b/manual/latest/user-guide/process-engine/decisions/repository/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/delegation-code/index.html b/manual/latest/user-guide/process-engine/delegation-code/index.html
index 375dcbd96..e361ab420 100644
--- a/manual/latest/user-guide/process-engine/delegation-code/index.html
+++ b/manual/latest/user-guide/process-engine/delegation-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/deployment-cache/index.html b/manual/latest/user-guide/process-engine/deployment-cache/index.html
index 132a29f42..409cf7dab 100644
--- a/manual/latest/user-guide/process-engine/deployment-cache/index.html
+++ b/manual/latest/user-guide/process-engine/deployment-cache/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/deployments/index.html b/manual/latest/user-guide/process-engine/deployments/index.html
index b297e6fea..9863848f5 100644
--- a/manual/latest/user-guide/process-engine/deployments/index.html
+++ b/manual/latest/user-guide/process-engine/deployments/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/diagnostics-data/index.html b/manual/latest/user-guide/process-engine/diagnostics-data/index.html
index ff3be5437..7839615e0 100644
--- a/manual/latest/user-guide/process-engine/diagnostics-data/index.html
+++ b/manual/latest/user-guide/process-engine/diagnostics-data/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/error-handling/index.html b/manual/latest/user-guide/process-engine/error-handling/index.html
index d1e64466d..02c000fb1 100644
--- a/manual/latest/user-guide/process-engine/error-handling/index.html
+++ b/manual/latest/user-guide/process-engine/error-handling/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/expression-language/index.html b/manual/latest/user-guide/process-engine/expression-language/index.html
index d673978dd..a355e7804 100644
--- a/manual/latest/user-guide/process-engine/expression-language/index.html
+++ b/manual/latest/user-guide/process-engine/expression-language/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/external-tasks/index.html b/manual/latest/user-guide/process-engine/external-tasks/index.html
index 610d60984..bf495aa99 100644
--- a/manual/latest/user-guide/process-engine/external-tasks/index.html
+++ b/manual/latest/user-guide/process-engine/external-tasks/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/history/custom-implementation/index.html b/manual/latest/user-guide/process-engine/history/custom-implementation/index.html
index c73282ef9..caf480c7b 100644
--- a/manual/latest/user-guide/process-engine/history/custom-implementation/index.html
+++ b/manual/latest/user-guide/process-engine/history/custom-implementation/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/history/history-cleanup/index.html b/manual/latest/user-guide/process-engine/history/history-cleanup/index.html
index 3afee9adb..a4aa69256 100644
--- a/manual/latest/user-guide/process-engine/history/history-cleanup/index.html
+++ b/manual/latest/user-guide/process-engine/history/history-cleanup/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/history/history-configuration/index.html b/manual/latest/user-guide/process-engine/history/history-configuration/index.html
index 2fe09a59c..e37fa5311 100644
--- a/manual/latest/user-guide/process-engine/history/history-configuration/index.html
+++ b/manual/latest/user-guide/process-engine/history/history-configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/history/index.html b/manual/latest/user-guide/process-engine/history/index.html
index e3245ebd0..8b6737e05 100644
--- a/manual/latest/user-guide/process-engine/history/index.html
+++ b/manual/latest/user-guide/process-engine/history/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/history/user-operation-log/index.html b/manual/latest/user-guide/process-engine/history/user-operation-log/index.html
index 7c5094788..638dd4c21 100644
--- a/manual/latest/user-guide/process-engine/history/user-operation-log/index.html
+++ b/manual/latest/user-guide/process-engine/history/user-operation-log/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/id-generator/index.html b/manual/latest/user-guide/process-engine/id-generator/index.html
index 999fe2717..236e31619 100644
--- a/manual/latest/user-guide/process-engine/id-generator/index.html
+++ b/manual/latest/user-guide/process-engine/id-generator/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/identity-service/index.html b/manual/latest/user-guide/process-engine/identity-service/index.html
index d3b45aabe..dfd94a5b4 100644
--- a/manual/latest/user-guide/process-engine/identity-service/index.html
+++ b/manual/latest/user-guide/process-engine/identity-service/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/incidents/index.html b/manual/latest/user-guide/process-engine/incidents/index.html
index 368cef622..bcc8917bc 100644
--- a/manual/latest/user-guide/process-engine/incidents/index.html
+++ b/manual/latest/user-guide/process-engine/incidents/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/index.html b/manual/latest/user-guide/process-engine/index.html
index 9904045a0..2d6faa47e 100644
--- a/manual/latest/user-guide/process-engine/index.html
+++ b/manual/latest/user-guide/process-engine/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/metrics/index.html b/manual/latest/user-guide/process-engine/metrics/index.html
index 2acf3fe0a..54323412e 100644
--- a/manual/latest/user-guide/process-engine/metrics/index.html
+++ b/manual/latest/user-guide/process-engine/metrics/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/multi-tenancy/index.html b/manual/latest/user-guide/process-engine/multi-tenancy/index.html
index 65dbc2d33..c1888d6cc 100644
--- a/manual/latest/user-guide/process-engine/multi-tenancy/index.html
+++ b/manual/latest/user-guide/process-engine/multi-tenancy/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/password-hashing/index.html b/manual/latest/user-guide/process-engine/password-hashing/index.html
index c49c5991f..be7230702 100644
--- a/manual/latest/user-guide/process-engine/password-hashing/index.html
+++ b/manual/latest/user-guide/process-engine/password-hashing/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/password-policy/index.html b/manual/latest/user-guide/process-engine/password-policy/index.html
index 58205c18b..ba42d12e5 100644
--- a/manual/latest/user-guide/process-engine/password-policy/index.html
+++ b/manual/latest/user-guide/process-engine/password-policy/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-diagram-api/index.html b/manual/latest/user-guide/process-engine/process-diagram-api/index.html
index 2858e2796..36b5eb3bf 100644
--- a/manual/latest/user-guide/process-engine/process-diagram-api/index.html
+++ b/manual/latest/user-guide/process-engine/process-diagram-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-engine-api/index.html b/manual/latest/user-guide/process-engine/process-engine-api/index.html
index caccb22fa..23b477032 100644
--- a/manual/latest/user-guide/process-engine/process-engine-api/index.html
+++ b/manual/latest/user-guide/process-engine/process-engine-api/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-engine-bootstrapping/index.html b/manual/latest/user-guide/process-engine/process-engine-bootstrapping/index.html
index c9379dc6d..a33a6bafa 100644
--- a/manual/latest/user-guide/process-engine/process-engine-bootstrapping/index.html
+++ b/manual/latest/user-guide/process-engine/process-engine-bootstrapping/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-engine-concepts/index.html b/manual/latest/user-guide/process-engine/process-engine-concepts/index.html
index 0eb204127..40bcb3ae2 100644
--- a/manual/latest/user-guide/process-engine/process-engine-concepts/index.html
+++ b/manual/latest/user-guide/process-engine/process-engine-concepts/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-engine-plugins/index.html b/manual/latest/user-guide/process-engine/process-engine-plugins/index.html
index efd216fde..8ea191780 100644
--- a/manual/latest/user-guide/process-engine/process-engine-plugins/index.html
+++ b/manual/latest/user-guide/process-engine/process-engine-plugins/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-instance-migration/index.html b/manual/latest/user-guide/process-engine/process-instance-migration/index.html
index b91c8bc19..81450dabf 100644
--- a/manual/latest/user-guide/process-engine/process-instance-migration/index.html
+++ b/manual/latest/user-guide/process-engine/process-instance-migration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-instance-modification/index.html b/manual/latest/user-guide/process-engine/process-instance-modification/index.html
index c493b845f..4d032186c 100644
--- a/manual/latest/user-guide/process-engine/process-instance-modification/index.html
+++ b/manual/latest/user-guide/process-engine/process-instance-modification/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-instance-restart/index.html b/manual/latest/user-guide/process-engine/process-instance-restart/index.html
index a5b858c8a..d0ba443f3 100644
--- a/manual/latest/user-guide/process-engine/process-instance-restart/index.html
+++ b/manual/latest/user-guide/process-engine/process-instance-restart/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/process-versioning/index.html b/manual/latest/user-guide/process-engine/process-versioning/index.html
index 4256a4a4e..2ad69e2e2 100644
--- a/manual/latest/user-guide/process-engine/process-versioning/index.html
+++ b/manual/latest/user-guide/process-engine/process-versioning/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/scripting/index.html b/manual/latest/user-guide/process-engine/scripting/index.html
index e5a4d9588..4a0d93cc3 100644
--- a/manual/latest/user-guide/process-engine/scripting/index.html
+++ b/manual/latest/user-guide/process-engine/scripting/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/securing-custom-code/index.html b/manual/latest/user-guide/process-engine/securing-custom-code/index.html
index 1d1e701af..ec3faed51 100644
--- a/manual/latest/user-guide/process-engine/securing-custom-code/index.html
+++ b/manual/latest/user-guide/process-engine/securing-custom-code/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/templating/index.html b/manual/latest/user-guide/process-engine/templating/index.html
index 5502c260f..f53ba3210 100644
--- a/manual/latest/user-guide/process-engine/templating/index.html
+++ b/manual/latest/user-guide/process-engine/templating/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/the-job-executor/index.html b/manual/latest/user-guide/process-engine/the-job-executor/index.html
index 09665c318..6180c0952 100644
--- a/manual/latest/user-guide/process-engine/the-job-executor/index.html
+++ b/manual/latest/user-guide/process-engine/the-job-executor/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/time-zones/index.html b/manual/latest/user-guide/process-engine/time-zones/index.html
index 4cba676f4..2310d9581 100644
--- a/manual/latest/user-guide/process-engine/time-zones/index.html
+++ b/manual/latest/user-guide/process-engine/time-zones/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/transactions-in-processes/index.html b/manual/latest/user-guide/process-engine/transactions-in-processes/index.html
index b58b09bab..75a73a623 100644
--- a/manual/latest/user-guide/process-engine/transactions-in-processes/index.html
+++ b/manual/latest/user-guide/process-engine/transactions-in-processes/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/process-engine/variables/index.html b/manual/latest/user-guide/process-engine/variables/index.html
index 6fa3e09ac..685e03615 100644
--- a/manual/latest/user-guide/process-engine/variables/index.html
+++ b/manual/latest/user-guide/process-engine/variables/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/quarkus-integration/cdi-integration/index.html b/manual/latest/user-guide/quarkus-integration/cdi-integration/index.html
index 5588df263..51880319e 100644
--- a/manual/latest/user-guide/quarkus-integration/cdi-integration/index.html
+++ b/manual/latest/user-guide/quarkus-integration/cdi-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/quarkus-integration/configuration/index.html b/manual/latest/user-guide/quarkus-integration/configuration/index.html
index 35d8ef1dc..cb85f5481 100644
--- a/manual/latest/user-guide/quarkus-integration/configuration/index.html
+++ b/manual/latest/user-guide/quarkus-integration/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/quarkus-integration/deployments/index.html b/manual/latest/user-guide/quarkus-integration/deployments/index.html
index fbfb8952f..e30e1569f 100644
--- a/manual/latest/user-guide/quarkus-integration/deployments/index.html
+++ b/manual/latest/user-guide/quarkus-integration/deployments/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/quarkus-integration/index.html b/manual/latest/user-guide/quarkus-integration/index.html
index 509d231d1..7fa83d433 100644
--- a/manual/latest/user-guide/quarkus-integration/index.html
+++ b/manual/latest/user-guide/quarkus-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
@@ -3159,9 +3157,9 @@
<dependency>
<groupId>org.cibseven.bpm.quarkus</groupId>
<artifactId>cibseven-bpm-quarkus-engine</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
This will add the CIB seven engine version 1.1 to your dependencies.
+This will add the CIB seven engine version 1.1.0 to your dependencies.
Camunda supports the following deployment scenario:
If you configure the process engine in standalone.xml
and provide a custom configuration class packaged inside an own module, the camunda-wildfly-subsystem module needs to have a module dependency on the module providing the class.
If you fail to do this, you will see the following error log:
Caused by: org.cibseven.bpm.engine.ProcessEngineException: Could not load 'foo.bar': the class must be visible from the camunda-wildfly-subsystem module.
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.createProcessEngineConfiguration(MscManagedProcessEngineController.java:187) [camunda-wildfly-subsystem-1.1.jar:]
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.startProcessEngine(MscManagedProcessEngineController.java:138) [camunda-wildfly-subsystem-1.1.jar:]
- at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController$3.run(MscManagedProcessEngineController.java:126) [camunda-wildfly-subsystem-1.1.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.createProcessEngineConfiguration(MscManagedProcessEngineController.java:187) [camunda-wildfly-subsystem-1.1.0.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController.startProcessEngine(MscManagedProcessEngineController.java:138) [camunda-wildfly-subsystem-1.1.0.jar:]
+ at org.cibseven.bpm.container.impl.jboss.service.MscManagedProcessEngineController$3.run(MscManagedProcessEngineController.java:126) [camunda-wildfly-subsystem-1.1.0.jar:]
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.de.
+CIB seven relies on Sonatype Nexus Repository to provide all artifacts to users at artifacts.cibseven.org.
Extra repository should be added to settings.xml
or to the POM file:
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
-
This will add the CIB seven engine 1.1 to your dependencies.
+This will add the CIB seven engine 1.1.0 to your dependencies.
Other starters that can be used are:
camunda-bpm-spring-boot-starter-rest
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-rest</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
By default the application path is engine-rest
, so without any further configuration you can access the api at http://localhost:8080/engine-rest
.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
<dependency>
<groupId>org.cibseven.bpm.springboot</groupId>
<artifactId>cibseven-bpm-spring-boot-starter-webapp</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
</dependency>
-
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.de.
Do not forget, that extra repository should be added to settings.xml
or to the POM file, since CIB seven is available yet only at artifacts.cibseven.org.
<repositories>
<repository>
<id>mvn-cibseven-public</id>
<name>CIB seven Public Repository</name>
- <url>https://artifacts.cibseven.de/repository/public/</url>
+ <url>https://artifacts.cibseven.org/repository/public/</url>
</repository>
</repositories>
By default the application path is /camunda
, so without any further configuration you can access
diff --git a/manual/latest/user-guide/spring-framework-integration/configuration/index.html b/manual/latest/user-guide/spring-framework-integration/configuration/index.html
index d451061e6..c98d6253e 100644
--- a/manual/latest/user-guide/spring-framework-integration/configuration/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/configuration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/spring-framework-integration/deployment/index.html b/manual/latest/user-guide/spring-framework-integration/deployment/index.html
index ced4f5261..301c3b671 100644
--- a/manual/latest/user-guide/spring-framework-integration/deployment/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/deployment/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/spring-framework-integration/expressions/index.html b/manual/latest/user-guide/spring-framework-integration/expressions/index.html
index a774f6279..6403ea217 100644
--- a/manual/latest/user-guide/spring-framework-integration/expressions/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/expressions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/spring-framework-integration/index.html b/manual/latest/user-guide/spring-framework-integration/index.html
index dc22b6e47..7807b358e 100644
--- a/manual/latest/user-guide/spring-framework-integration/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/spring-framework-integration/testing/index.html b/manual/latest/user-guide/spring-framework-integration/testing/index.html
index ee4606b9b..397c2607e 100644
--- a/manual/latest/user-guide/spring-framework-integration/testing/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/testing/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
diff --git a/manual/latest/user-guide/spring-framework-integration/transactions/index.html b/manual/latest/user-guide/spring-framework-integration/transactions/index.html
index 777f29190..934c8d11e 100644
--- a/manual/latest/user-guide/spring-framework-integration/transactions/index.html
+++ b/manual/latest/user-guide/spring-framework-integration/transactions/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
@@ -3151,7 +3149,7 @@
The following explains the SpringTransactionIntegrationTest of the core codebase step by step. Below is the Spring configuration file that we use in this example (you can find it in SpringTransactionIntegrationTest-context.xml). The section shown below contains the dataSource
, transactionManager
, processEngine
and the process engine services.
The following explains the SpringTransactionIntegrationTest of the core codebase step by step. Below is the Spring configuration file that we use in this example (you can find it in SpringTransactionIntegrationTest-context.xml). The section shown below contains the dataSource
, transactionManager
, processEngine
and the process engine services.
When passing the DataSource to the SpringProcessEngineConfiguration
(using property “dataSource”), the CIB seven engine uses a org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy
internally, which wraps the passed DataSource. This is done to make sure the SQL connections retrieved from the DataSource and the Spring transactions play well together. This implies that it’s no longer needed to proxy the dataSource yourself in Spring configuration, although it’s still allowed to pass a TransactionAwareDataSourceProxy
into the SpringProcessEngineConfiguration
. In this case no additional wrapping will occur.
Make sure when declaring a TransactionAwareDataSourceProxy
in Spring configuration yourself, that you don’t use it for resources that are already aware of Spring-transactions (e.g., DataSourceTransactionManager
and JPATransactionManager
need the un-proxied dataSource).
<beans xmlns="http://www.springframework.org/schema/beans"
diff --git a/manual/latest/user-guide/task-forms/index.html b/manual/latest/user-guide/task-forms/index.html
index 43a4c2b79..1377fadaf 100644
--- a/manual/latest/user-guide/task-forms/index.html
+++ b/manual/latest/user-guide/task-forms/index.html
@@ -102,8 +102,6 @@
1.1
- (1.1)
-
<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-bpm-junit5</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
<scope>test</scope>
</dependency>
The following code snippets show examples of how to use the extension.
@@ -3372,7 +3370,7 @@<dependency>
<groupId>org.cibseven.bpm</groupId>
<artifactId>cibseven-bpm-assert</artifactId>
- <version>1.1</version>
+ <version>1.1.0</version>
<scope>test</scope>
</dependency>
Also, you will have to add the AssertJ library to your dependencies. Make sure that the version is correct. You can find the correct version in the compatibility matrix below.
diff --git a/manual/latest/webapps/admin/authorization-management/index.html b/manual/latest/webapps/admin/authorization-management/index.html index 7c197b746..7f75182fa 100644 --- a/manual/latest/webapps/admin/authorization-management/index.html +++ b/manual/latest/webapps/admin/authorization-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/webapps/admin/configuration/index.html b/manual/latest/webapps/admin/configuration/index.html index b06578ec9..8250a36e3 100644 --- a/manual/latest/webapps/admin/configuration/index.html +++ b/manual/latest/webapps/admin/configuration/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/webapps/admin/group-management/index.html b/manual/latest/webapps/admin/group-management/index.html index cb764d9c6..d77d45354 100644 --- a/manual/latest/webapps/admin/group-management/index.html +++ b/manual/latest/webapps/admin/group-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/webapps/admin/index.html b/manual/latest/webapps/admin/index.html index b60077920..d3eef266b 100644 --- a/manual/latest/webapps/admin/index.html +++ b/manual/latest/webapps/admin/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/webapps/admin/plugins/index.html b/manual/latest/webapps/admin/plugins/index.html index c6714356d..d6abc2e60 100644 --- a/manual/latest/webapps/admin/plugins/index.html +++ b/manual/latest/webapps/admin/plugins/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - diff --git a/manual/latest/webapps/admin/system-management/index.html b/manual/latest/webapps/admin/system-management/index.html index f237de51e..ab60f9492 100644 --- a/manual/latest/webapps/admin/system-management/index.html +++ b/manual/latest/webapps/admin/system-management/index.html @@ -102,8 +102,6 @@ 1.1 - (1.1) - @@ -3207,7 +3205,7 @@