Skip to content

Commit

Permalink
feat(release): Adjust Examples for 7.21.0 Release
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: yanavasileva <yanavasileva@users.noreply.github.com>
Co-authored-by: Miklas Boskamp <20189772+mboskamp@users.noreply.github.com>
Co-authored-by: Daniel Kelemen <daniel.kelemen@camunda.com>
Co-authored-by: Daniel Kelemen <danielkelemen@users.noreply.github.com>
Co-authored-by: venetrius <gergely.juhasz@camunda.com>
Co-authored-by: venetrius <gergelygjuhasz@gmail.com>

Related-to: camunda/camunda-bpm-platform#3856
  • Loading branch information
github-actions[bot] committed Apr 4, 2024
1 parent 5487103 commit 83941d9
Show file tree
Hide file tree
Showing 85 changed files with 805 additions and 792 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Camunda Platform examples is a collection of focused usage examples for the [Cam
| Camunda Version | Link | Checkout command |
|-----------------|-----------------------------------------------------------------------|-----------------------|
| Latest | [Master branch](https://github.com/camunda/camunda-bpm-examples) | `git checkout master` |
| 7.21 | [7.21 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.21) | `git checkout 7.21` |
| 7.20 | [7.20 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.20) | `git checkout 7.20` |
| 7.19 | [7.19 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.19) | `git checkout 7.19` |
| 7.18 | [7.18 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.18) | `git checkout 7.18` |
Expand Down Expand Up @@ -104,16 +105,16 @@ If you clone this repository, use the checkout commands to access the sources fo
|-------------------------------------------------------------------------------------------------|----------------------|---------------------------------------------|
| [BPMN Parse Listener](process-engine-plugin/bpmn-parse-listener) | Unit Test | Process Engine Plugin, Bpmn Parse Listener |
| [BPMN Parse Listener on User Task](process-engine-plugin/bpmn-parse-listener-on-user-task) [^1] | Unit Test | Process Engine Plugin, Bpmn Parse Listener |
| [Custom History Level](process-engine-plugin/custom-history-level) | Unit Test | Process Engine Plugin, Custom History Level |
| [Command Interceptor - Blocking](process-engine-plugin/command-interceptor-blocking) | Unit Test | Maintenance, Interceptor, Configuration |
| [Custom History Level](process-engine-plugin/custom-history-level) | Unit Test | Process Engine Plugin, Custom History Level |
| [Failed Job Retry Profile](process-engine-plugin/failed-job-retry-profile) | Unit Test | Process Engine Plugin, Failed Job Retry |

### Bpmn 2.0 Model API Examples

| Name | Container | Keywords |
|----------------------------------------------------------------------|----------------------|---------------------------|
| [Generate BPMN process](/bpmn-model-api/generate-process-fluent-api) | Unit Test | Fluent API |
| [Generate JSF forms](/bpmn-model-api/generate-jsf-form) [^1] | JavaEE Containers | JSF, Usertask |
| [Generate BPMN process](/bpmn-model-api/generate-process-fluent-api) | Unit Test | Fluent API |
| [Parse BPMN model](/bpmn-model-api/parse-bpmn) | Unit Test | BPMN |

### Cmmn 1.1 Model API Examples
Expand Down
12 changes: 10 additions & 2 deletions bpmn-model-api/generate-process-fluent-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
<version>1.0-SNAPSHOT</version>

<properties>
<version.camunda>7.20.0</version.camunda>
<version.camunda>7.21.0</version.camunda>
<version.junit>4.13.2</version.junit>
<version.h2>2.1.214</version.h2>
<version.slf4j>1.7.26</version.slf4j>

<!-- maven -->
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version>
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>
<maven.war.plugin.version>3.4.0</maven.war.plugin.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
Expand Down Expand Up @@ -74,6 +75,13 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${maven.war.plugin.version}</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
4 changes: 2 additions & 2 deletions bpmn-model-api/parse-bpmn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<name>Parse BPMN by model API</name>

<properties>
<version.camunda>7.20.0</version.camunda>
<version.camunda>7.21.0</version.camunda>
<version.junit>4.13.2</version.junit>
<version.assertj>3.22.0</version.assertj>

<!-- maven -->
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.plugin.version>3.11.0</maven.compiler.plugin.version>
<maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion clients/java/order-handling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<name>order-handling-example</name>

<properties>
<camunda.platform.version>7.20.0</camunda.platform.version>
<camunda.platform.version>7.21.0</camunda.platform.version>
<slf4j.version>1.7.36</slf4j.version>
<jaxb.version>4.0.5</jaxb.version>
<maven.compiler.version>3.11.0</maven.compiler.version>
Expand Down
2 changes: 1 addition & 1 deletion cockpit/cockpit-bpmn-js-module-bundled/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This example shows how to develop, bundle and include a bpmn-js custom module in

For additional information, please also see the [documentation](https://docs.camunda.org/manual/latest/webapps/cockpit/extend/configuration/#bpmn-diagram-viewer-bpmn-js).

Built and tested against Camunda Platform version `7.20.0`.
Built and tested against Camunda Platform version `7.21.0`.

![Screenshot](screenshot.png)

Expand Down
80 changes: 40 additions & 40 deletions cockpit/cockpit-bpmn-js-module-bundled/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions cockpit/cockpit-bpmn-js-module-bundled/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
},
"homepage": "https://github.com/camunda/camunda-bpm-examples/tree/master/cockpit/cockpit-bpmn-js-module-bundled",
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"bpmn-js": "^12.1.1",
"diagram-js": "^11.13.0",
"rollup": "^3.29.3",
"diagram-js": "^11.13.1",
"rollup": "^3.29.4",
"tiny-svg": "^3.0.1"
}
}
2 changes: 1 addition & 1 deletion cockpit/cockpit-diagram-interactions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This example shows how you can achieve diagram interactions with custom plugins.
Click on an activity in the BPMN diagram to apply a filter to the table.

Built and tested against Camunda Platform version `7.20.0`.
Built and tested against Camunda Platform version `7.21.0`.

![Screenshot](screenshot.png)

Expand Down
6 changes: 3 additions & 3 deletions cockpit/cockpit-fullstack-count-processes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Fullstack (ReactJS & Java) "Count Processes" Cockpit Plugin

This is a simple plugin that showcases the plugin system of Cockpit, the process monitoring tool of [Camunda Platform](http://docs.camunda.org).

Built and tested against Camunda Platform version `7.20.0`.
Built and tested against Camunda Platform version `7.21.0`.

![Screenshot](screenshot.png)

> Note: If you need please take a look at the [Cockpit Plug-ins](https://docs.camunda.org/manual/7.20/webapps/cockpit/extend/plugins/) for the basics first.
> Note: If you need please take a look at the [Cockpit Plug-ins](https://docs.camunda.org/manual/7.21/webapps/cockpit/extend/plugins/) for the basics first.
# Table of contents

Expand Down Expand Up @@ -452,7 +452,7 @@ Now we are done with the server-side parts of the plug-in. Next, we will go ahea


>This section only provides a short overview of the client-side plug-in mechanism in Cockpit.
>Consider reading about the [Structure of a Frontend Module](https://docs.camunda.org/manual/7.20/webapps/cockpit/extend/plugins/#structure-of-a-frontend-module) if you are interested in more details.
>Consider reading about the [Structure of a Frontend Module](https://docs.camunda.org/manual/7.21/webapps/cockpit/extend/plugins/#structure-of-a-frontend-module) if you are interested in more details.

The client-side part of a Cockpit plug-in consists of an extension to the Cockpit webapp client application. It is served through the plug-in serverside extension as a static plug-in asset.
Expand Down
Loading

0 comments on commit 83941d9

Please sign in to comment.