Skip to content

Commit

Permalink
chore(release): adjust examples for 7.14.0 release
Browse files Browse the repository at this point in the history
related to CAM-12352, CAM-12345, CAM-12344, CAM-12346, CAM-12347, CAM-12348, CAM-12349, CAM-12351, CAM-12367
closes #54

Co-authored-by: Hariharan Parasuraman <hariharan.parasuraman@camunda.com>
Co-authored-by: Nikola Koevski <nikola.koevski@camunda.com>
Co-authored-by: Miklas Boskamp <miklas.boskamp@camunda.com>
Co-authored-by: Anton von Weltzien <anton.weltzien@camunda.com>
  • Loading branch information
5 people committed Oct 12, 2020
1 parent f914490 commit 3ecb7fa
Show file tree
Hide file tree
Showing 114 changed files with 14,113 additions and 51,699 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Camunda BPM examples is a collection of focused usage examples for the [camunda
| Camunda Version | Link | Checkout command |
| -----------------|----------------------------------------------------------------------|-----------------------|
| Latest | [Master branch](https://github.com/camunda/camunda-bpm-examples) | `git checkout master` |
| 7.14 | [7.14 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.14)| `git checkout 7.14` |
| 7.13 | [7.13 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.13)| `git checkout 7.13` |
| 7.12 | [7.12 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.12)| `git checkout 7.12` |
| 7.11 | [7.11 tag](https://github.com/camunda/camunda-bpm-examples/tree/7.11)| `git checkout 7.11` |
Expand Down
2 changes: 1 addition & 1 deletion authentication/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<version>1.0.0</version>

<properties>
<camunda.version>7.13.0</camunda.version>
<camunda.version>7.14.0</camunda.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<property name="jobExecutorActivate" value="false" />
<property name="deploymentResources" value="classpath*:*.bpmn" />
<property name="metricsEnabled" value="false"/>
<property name="telemetryReporterActivate" value="false" />
</bean>

<bean id="processEngine" class="org.camunda.bpm.engine.spring.ProcessEngineFactoryBean">
Expand Down
7 changes: 7 additions & 0 deletions bpmn-model-api/generate-jsf-form/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,12 @@ User task form:

![Handle Feature Request Form][9]

## How to use it?

1. Checkout the project with Git
2. Download [Camunda BPM Wildfly][10]
3. Unpack and execute ```start-camunda.(bat/sh)```
4. Read and run the [unit test cases][11]

[1]: src/main/resources/support.png
[2]: src/main/resources/feature.png
Expand All @@ -220,3 +225,5 @@ User task form:
[7]: docs/support-task-form.png
[8]: docs/feature-start-form.png
[9]: docs/features-task-form.png
[10]: https://downloads.camunda.cloud/release/camunda-bpm/wildfly/7.14/
[11]: src/test/java/org/camunda/bpm
8 changes: 4 additions & 4 deletions bpmn-model-api/generate-jsf-form/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<description>Process application that uses the camunda BPM Platform and has been generated by the Maven archetype 'camunda-archetype-ejb-war-7.0.3-SNAPSHOT'</description>

<properties>
<camunda.version>7.13.0</camunda.version>
<camunda.version>7.14.0</camunda.version>
<arquillian.version>1.1.10.Final</arquillian.version>
<wildfly.container.adapter.version>2.2.0.Final</wildfly.container.adapter.version>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -70,11 +70,11 @@
<version>2.3.2</version>
</dependency>

<!-- Java EE 6 Specification -->
<!-- Java EE 7 Specification -->
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-web-6.0</artifactId>
<version>3.0.2.Final</version>
<artifactId>jboss-javaee-web-7.0</artifactId>
<version>1.1.1.Final</version>
<type>pom</type>
<scope>provided</scope>
<exclusions>
Expand Down
2 changes: 1 addition & 1 deletion bpmn-model-api/generate-process-fluent-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>1.0-SNAPSHOT</version>

<properties>
<camunda.version>7.13.0</camunda.version>
<camunda.version>7.14.0</camunda.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class ArchiveInvoiceService implements JavaDelegate {
public void execute(DelegateExecution execution) throws Exception {

wasExecuted = true;
LOGGER.info("\n\n ... Now archiving invoice "+execution.getVariable("invoiceNumber")+" \n\n");
LOGGER.info("\n\n ... Now archiving invoice \n\n");

}

Expand Down
2 changes: 1 addition & 1 deletion bpmn-model-api/parse-bpmn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<name>Parse BPMN by model API</name>

<properties>
<version.camunda>7.13.0</version.camunda>
<version.camunda>7.14.0</version.camunda>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion cmmn-model-api/typed-custom-elements/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ In [KPITransformListener][kpi-transform-listener], access to the custom model el
[cmmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/cmmn-model
[test-case]: src/test/java/org/camunda/bpm/example/modelapi/TransformListenerCustomElementsTest.java
[kpi-transform-listener]: src/main/java/org/camunda/bpm/example/modelapi/KPITransformListener.java
[cmmn-transform-listener]: https://docs.camunda.org/javadoc/camunda-bpm-platform/7.12/org/camunda/bpm/engine/impl/cmmn/transformer/CmmnTransformListener.html
[cmmn-transform-listener]: https://docs.camunda.org/javadoc/camunda-bpm-platform/7.14/org/camunda/bpm/engine/impl/cmmn/transformer/CmmnTransformListener.html
[process-engine-plugin]: src/main/java/org/camunda/bpm/example/modelapi/CustomElementsProcessEnginePlugin.java
[camunda-cfg-xml]: src/test/resources/camunda.cfg.xml
[kpi-element]: src/main/java/org/camunda/bpm/example/modelapi/KPIElement.java
Expand Down
7 changes: 1 addition & 6 deletions cmmn-model-api/typed-custom-elements/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<name>Strongly typed custom elements in the CMMN Model API</name>

<properties>
<version.camunda>7.13.0</version.camunda>
<version.camunda>7.14.0</version.camunda>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -34,11 +34,6 @@
<artifactId>camunda-cmmn-model</artifactId>
</dependency>

<dependency>
<groupId>org.camunda.bpm.model</groupId>
<artifactId>camunda-cmmn-model</artifactId>
</dependency>

<dependency>
<groupId>org.camunda.bpm</groupId>
<artifactId>camunda-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cockpit/cockpit-angular-open-usertasks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Angular 10 "Open Usertasks" Cockpit Tab
This example shows how to develop a Cockpit plugin in Angular 10.
Click on an activity in the BPMN diagram to apply a filter to the table.

Built and tested against Camunda BPM version `7.14.0-alpha2`.
Built and tested against Camunda BPM version `7.14.0`.

![Screenshot](screenshot.png)

Expand Down
Loading

0 comments on commit 3ecb7fa

Please sign in to comment.