Skip to content

Commit

Permalink
chore(release): adjust examples for 7.13 release
Browse files Browse the repository at this point in the history
* update: spring-boot examples
* update: BPMN 2.0 examples
* update: DMN examples
* update: spin examples
* update: multi-tenancy examples
* update: migration examples
* update: webapp examples
* update: plugin & model API examples
* update: deployment examples
* fix: mock backend of soap example

Co-authored-by: Tassilo Weidner <[email protected]>
Co-authored-by: Martin Stamm <[email protected]>
Co-authored-by: Nikola Koevski <[email protected]>
  • Loading branch information
4 people authored May 25, 2020
1 parent 5105c10 commit ea70430
Show file tree
Hide file tree
Showing 177 changed files with 42,868 additions and 2,885 deletions.
4 changes: 2 additions & 2 deletions authentication/basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<version>2.2.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -16,7 +16,7 @@
<version>1.0.0</version>

<properties>
<camunda.version>7.12.0</camunda.version>
<camunda.version>7.13.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,7 +32,6 @@
import org.springframework.context.annotation.ImportResource;

import javax.annotation.PostConstruct;
import javax.servlet.Filter;

@SpringBootApplication
@Configuration
Expand Down Expand Up @@ -65,24 +64,27 @@ private static SpringApplicationBuilder configureApplication(SpringApplicationBu
}

@Bean
public FilterRegistrationBean authenticationFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean();
Filter myFilter = new ProcessEngineAuthenticationFilter();
public FilterRegistrationBean<ProcessEngineAuthenticationFilter> authenticationFilter() {
FilterRegistrationBean<ProcessEngineAuthenticationFilter> registration =
new FilterRegistrationBean<>();
ProcessEngineAuthenticationFilter myFilter = new ProcessEngineAuthenticationFilter();
registration.setFilter(myFilter);
registration.addUrlPatterns("/*");
registration.addInitParameter("authentication-provider","org.camunda.bpm.engine.rest.security.auth.impl.HttpBasicAuthenticationProvider");
registration.addInitParameter("authentication-provider",
"org.camunda.bpm.engine.rest.security.auth.impl.HttpBasicAuthenticationProvider");
registration.setName("camunda-auth");
registration.setOrder(1);
return registration;
}

@Bean
public FilterRegistrationBean restEasyFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean();
Filter myFilter = new FilterDispatcher();
public FilterRegistrationBean<FilterDispatcher> restEasyFilter() {
FilterRegistrationBean<FilterDispatcher> registration = new FilterRegistrationBean<>();
FilterDispatcher myFilter = new FilterDispatcher();
registration.setFilter(myFilter);
registration.addUrlPatterns("/*");
registration.addInitParameter("javax.ws.rs.Application","org.camunda.bpm.example.authentication.rest.RestProcessEngineDeployment");
registration.addInitParameter("javax.ws.rs.Application",
"org.camunda.bpm.example.authentication.rest.RestProcessEngineDeployment");
registration.setName("Resteasy");
registration.setOrder(10);
return registration;
Expand Down
2 changes: 1 addition & 1 deletion bpmn-model-api/generate-jsf-form/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ User task form:
[2]: src/main/resources/feature.png
[3]: src/main/webapp/forms/start-form.xhtml
[4]: src/main/webapp/forms/user-form.xhtml
[5]: https://github.com/camunda/camunda-bpmn-model
[5]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/bpmn-model
[6]: docs/support-start-form.png
[7]: docs/support-task-form.png
[8]: docs/feature-start-form.png
Expand Down
18 changes: 9 additions & 9 deletions bpmn-model-api/generate-jsf-form/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<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.12.0</camunda.version>
<camunda.version>7.13.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.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Expand Down Expand Up @@ -103,7 +103,7 @@
<artifactId>arquillian-protocol-servlet</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<dependency>
<groupId>org.jboss.shrinkwrap.resolver</groupId>
<artifactId>shrinkwrap-resolver-impl-maven</artifactId>
<scope>test</scope>
Expand Down Expand Up @@ -147,15 +147,15 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.1</version>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<version>2.4</version>
<configuration>
<!-- A web.xml is no longer required. -->
<failOnMissingWebXml>false</failOnMissingWebXml>
Expand Down Expand Up @@ -187,7 +187,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14</version>
<version>2.22.2</version>
<configuration>
<excludes>
<!-- Exclusion for Arquillian test cases to avoid dependency on infrastructure
Expand Down
2 changes: 1 addition & 1 deletion bpmn-model-api/generate-process-fluent-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,4 @@ Bpmn.writeModelToStream(System.out, modelInstance);
[1]: https://github.com/camunda/camunda-bpm-platform/tree/master/examples/invoice
[3]: invoice.png
[4]: src/test/java/org/camunda/bpm/quickstart/CreateInvoiceProcessTest.java
[5]: https://github.com/camunda/camunda-bpmn-model
[5]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/bpmn-model
6 changes: 3 additions & 3 deletions bpmn-model-api/generate-process-fluent-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<version>1.0-SNAPSHOT</version>

<properties>
<camunda.version>7.12.0</camunda.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<camunda.version>7.13.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>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Expand Down
10 changes: 5 additions & 5 deletions bpmn-model-api/parse-bpmn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Also be aware that you can use:
1. Checkout the project with Git
2. Read and run the [unit test case][test-case]

[bpmn-model]: https://github.com/camunda/camunda-bpmn-model
[xml-model]: https://github.com/camunda/camunda-xml-model
[cmmn-model]: https://github.com/camunda/camunda-cmmn-model
[test-case]: src/test/java/org/camunda/bpm/example/modelapi/ParseBpmnTest.java
[dmn-model]: https://github.com/camunda/camunda-dmn-model
[bpmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/bpmn-model
[xml-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/xml-model
[cmmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/cmmn-model
[dmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/dmn-model
[test-case]: src/test/java/org/camunda/bpm/example/modelapi/ParseBpmnTest.java
6 changes: 3 additions & 3 deletions bpmn-model-api/parse-bpmn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<name>Parse BPMN by model API</name>

<properties>
<version.camunda>7.12.0</version.camunda>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<version.camunda>7.13.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>
</properties>

Expand Down
8 changes: 4 additions & 4 deletions cmmn-model-api/typed-custom-elements/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ A CMMN transform listener is the CMMN equivalent to a BPMN parse listener. That

In [KPITransformListener][kpi-transform-listener], access to the custom model elements is implemented.

[bpmn-model]: https://github.com/camunda/camunda-bpmn-model
[dmn-model]: https://github.com/camunda/camunda-dmn-model
[xml-model]: https://github.com/camunda/camunda-xml-model
[cmmn-model]: https://github.com/camunda/camunda-cmmn-model
[bpmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/bpmn-model
[dmn-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/dmn-model
[xml-model]: https://github.com/camunda/camunda-bpm-platform/tree/master/model-api/xml-model
[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
Expand Down
6 changes: 3 additions & 3 deletions cmmn-model-api/typed-custom-elements/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<name>Strongly typed custom elements in the CMMN Model API</name>

<properties>
<version.camunda>7.12.0</version.camunda>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<version.camunda>7.13.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>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions cockpit/cockpit-bpmn-js-module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Cockpit bpmn.js module

This example shows how to develop a Cockpit bpmn.js module.

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

Built and tested against Camunda BPM version `7.12.0`.
Built and tested against Camunda BPM version `7.13.0`.

![Screenshot](screenshot.png)

Expand Down
Binary file modified cockpit/cockpit-bpmn-js-module/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions cockpit/cockpit-failed-jobs-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

A Cockpit plugin which shows a grid list of [Failed Jobs][1] on the start page of Cockpit and has three columns: `Job ID`, `Process instance ID` and `Exception`.

Built and tested against Camunda BPM version `7.13.0`.

![Screenshot](screenshot.png)

## Related Concepts
Expand Down Expand Up @@ -48,9 +50,9 @@ Each Cockpit plugin has an Angular Controller, a unique pseudo-URL, such as: `pl
Use under terms of the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)


[1]: https://docs.camunda.org/manual/7.12/webapps/cockpit/bpmn/failed-jobs/
[2]: https://docs.camunda.org/manual/7.12/user-guide/process-engine/process-engine-concepts/#jobs-and-job-definitions
[3]: https://docs.camunda.org/manual/7.12/user-guide/process-engine/the-job-executor/
[4]: https://docs.camunda.org/manual/7.12/user-guide/process-engine/incidents/
[5]: https://docs.camunda.org/manual/7.12/user-guide/process-engine/transactions-in-processes/#transaction-boundaries
[1]: https://docs.camunda.org/manual/7.13/webapps/cockpit/bpmn/failed-jobs/
[2]: https://docs.camunda.org/manual/7.13/user-guide/process-engine/process-engine-concepts/#jobs-and-job-definitions
[3]: https://docs.camunda.org/manual/7.13/user-guide/process-engine/the-job-executor/
[4]: https://docs.camunda.org/manual/7.13/user-guide/process-engine/incidents/
[5]: https://docs.camunda.org/manual/7.13/user-guide/process-engine/transactions-in-processes/#transaction-boundaries
[6]: https://github.com/camunda/camunda-bpm-webapp
4 changes: 2 additions & 2 deletions cockpit/cockpit-failed-jobs-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<description>A Cockpit plugin which shows a grid list of Failed Jobs on the start page of Cockpit and has three columns: Job ID, Process instance ID and Exception.</description>

<properties>
<camunda.version>7.12.0</camunda.version>
<camunda.version>7.13.0</camunda.version>

<!-- This property must be present for the pom.xml to be recognized as a plugin -->
<camunda.plugin.category>Monitoring</camunda.plugin.category>

<camunda.plugin.screenshot>screenshot.png</camunda.plugin.screenshot>
<camunda.plugin.testedOnVersion>7.12.0</camunda.plugin.testedOnVersion>
<camunda.plugin.testedOnVersion>7.13.0</camunda.plugin.testedOnVersion>
<camunda.plugin.language>EN</camunda.plugin.language>

<maven.compiler.source>1.7</maven.compiler.source>
Expand Down
Binary file modified cockpit/cockpit-failed-jobs-plugin/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions cockpit/cockpit-sample-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Sample Plugin for Camunda Cockpit

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

Built and tested against Camunda BPM version `7.12.0`.
Built and tested against Camunda BPM version `7.13.0`.

![Screenshot](screenshot.png)

Expand All @@ -26,7 +26,7 @@ Built and tested against Camunda BPM version `7.12.0`.
![Cockpit Plugin](cockpit-plugin.png)


> Note: If you need please take a look at the [Cockpit Plug-ins](https://docs.camunda.org/manual/7.12/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.13/webapps/cockpit/extend/plugins/) for the basics first.
1. [Server Side](#server-side)
1. [Plug-in Archive](#plug-in-archive)
Expand Down Expand Up @@ -608,7 +608,7 @@ As the file is loaded as a RequireJS module, dependencies (in terms of other Req

The plug-in must register itself with the `ViewsProvider` via a [module configuration hook](http://docs.angularjs.org/api/angular.Module).

From within Cockpit, views are included using the [view directive](https://github.com/camunda/camunda-commons-ui/blob/master/lib/plugin/view.js):
From within Cockpit, views are included using the [view directive](https://github.com/camunda/camunda-bpm-webapp/blob/7.13/camunda-commons-ui/lib/plugin/view.js):

```html
<view provider="viewProvider" vars="viewProviderVars" />
Expand Down
Binary file modified cockpit/cockpit-sample-plugin/cockpit-plugin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions cockpit/cockpit-sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@

<name>Camunda Cockpit Plugin: Sample</name>
<description>This is a simple plugin that showcases the plugin system of Cockpit, the process monitoring tool of Camunda BPM.</description>
<url>http://docs.camunda.org/latest/real-life/how-to/#cockpit-how-to-develop-a-cockpit-plugin</url>
<url>https://github.com/camunda/camunda-bpm-examples/tree/7.13/cockpit/cockpit-sample-plugin</url>

<properties>
<camunda.version>7.12.0</camunda.version>
<camunda.version>7.13.0</camunda.version>

<!-- This property must be present for the pom.xml to be recognized as a plugin -->
<camunda.plugin.category>Sample</camunda.plugin.category>

<camunda.plugin.screenshot>screenshot.png</camunda.plugin.screenshot>
<!-- <camunda.plugin.screenshot.1>screenshot2.png</camunda.plugin.screenshot.1> -->
<camunda.plugin.testedOnVersion>7.12.0</camunda.plugin.testedOnVersion>
<camunda.plugin.testedOnVersion>7.13.0</camunda.plugin.testedOnVersion>
<!-- <camunda.plugin.exampleProcessApplicationUrl></camunda.plugin.exampleProcessApplicationUrl> -->
<camunda.plugin.language>EN</camunda.plugin.language>

Expand Down
Binary file modified cockpit/cockpit-sample-plugin/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ public ProcessInstanceResource(String engineName) {

@GET
public List<ProcessInstanceCountDto> getProcessInstanceCounts() {

QueryParameters<ProcessInstanceCountDto> parameters =
new QueryParameters<ProcessInstanceCountDto>();
parameters.disableMaxResultsLimit();
return getQueryService()
.executeQuery(
"cockpit.sample.selectProcessInstanceCountsByProcessDefinition",
new QueryParameters<ProcessInstanceCountDto>());
.executeQuery("cockpit.sample.selectProcessInstanceCountsByProcessDefinition", parameters);
}
}
2 changes: 1 addition & 1 deletion cockpit/js-only-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Javascript Only Plugin for Camunda Cockpit

This example shows how to develop a Cockpit plugin without the need to register it with the Camunda BPM server. It makes use of the `customScript` property of the webapp configurations.

Built and tested against Camunda BPM version `7.12.0`.
Built and tested against Camunda BPM version `7.13.0`.

![Screenshot](screenshot.png)

Expand Down
Binary file modified cockpit/js-only-plugin/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion cockpit/request-interceptor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Request Interceptor for Camunda Cockpit

This example shows how to intercept requests made by Camunda Cockpit. This might be useful if you need to set additional properties or request headers on all requests made by Cockpit against the rest API.

Built and tested against Camunda BPM version `7.12.0`.
Built and tested against Camunda BPM version `7.13.0`.


Integrate into Camunda Webapp
Expand Down
2 changes: 2 additions & 0 deletions cockpit/search-process-js-only/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

A simple plugin to search for a process by its process instance id.

Built and tested against Camunda BPM version `7.13.0`.

## Installation

- Copy the `searchProcess.js` file into the `app/cockpit/scripts/` folder of the Camunda Webapp.
Expand Down
Binary file modified cockpit/search-process-js-only/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions deployment/ejb-pa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ How to use it

1. Checkout the project with Git;
2. Import the project into your IDE;
3. Build it with maven;
4. Deploy it to a camunda-bpm-platform distro of your own choice, that supports EJBs (Wildfly);
3. Build it with Maven;
4. Deploy it to a `camunda-bpm-platform` distro of your own choice, that supports EJBs (Wildfly);
5. Wait a minute;
6. Check the console if you can find: "This is a @Stateless Ejb component invoked from a BPMN 2.0 process".
6 changes: 3 additions & 3 deletions deployment/ejb-pa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<version>1.0-SNAPSHOT</version>

<properties>
<version.camunda>7.12.0</version.camunda>
<version.camunda>7.13.0</version.camunda>
<version.java-ee-specs>3.0.1.Final</version.java-ee-specs>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
</properties>
Expand Down
7 changes: 4 additions & 3 deletions deployment/embedded-spring-rest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ This example demonstrates how to set up a web application, which
* Bundles the `camunda-engine-REST` library
* Exposes the Process Engine API via REST

> **Note:** This project must be deployed on a vanilla Apache Tomcat server, NOT the prepackaged distribution which can be downloaded from http://camunda.org.
> **Note:** This project must be deployed on a vanilla Apache Tomcat server, NOT the prepackaged distribution
> which can be downloaded from http://camunda.org.
## Why is this example interesting?

Expand Down Expand Up @@ -113,7 +114,7 @@ Reference all required libraries in pom.xml:
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>3.0.8.Final</version>
<version>3.10.0.Final</version>
</dependency>

<dependency>
Expand All @@ -131,7 +132,7 @@ Reference all required libraries in pom.xml:

## How to use it?

1. Build it with maven
1. Build it with Maven
2. Deploy it to a vanilla Apache Tomcat server, NOT the prepackaged distribution which can be downloaded from http://camunda.org!!
3. Access the REST Endpoint:
[http://localhost:8080/camunda-quickstart-embedded-spring-rest-1.0-SNAPSHOT/engine/default/process-definition][1]
Expand Down
Loading

0 comments on commit ea70430

Please sign in to comment.