The goal of the Camunda BPM incubation space is to promote the development of interesting new projects and ideas around BPM, BPMN and process engines.
Due to the productization and stabilization focus in the camunda BPM core platform, we decided to separate out these experimental projects from the core platform. The core BPM platform is stable and maintained and can be found in the GitHub repository camunda-bpm-platform. This is also the base for the supported (commercial) camunda BPM platform product. The camunda-bpm-incubation repository contains a list of incubation projects which may be located in that repository itself or inside a different repository. We hope that this helps us finding a balance between being able to try out new innovative ideas (possibly in an unstructured or even unstable manner) but still being able to provide a stable “core” project. I think that this is also helpful for users of the project: users immediately see which parts of the project are stable and maintained and which other parts are still experimental.
Plexiti makes the first large community contribution to Camunda BPM
- ease the readability and maintainability of process model tests and make the writing of process model tests more fluent and more fun
- make it even easier to mock the services available to a process instance than it already is
assertThat(processInstance).isWaitingAt("review");
assertThat(task).isAssignedTo("piggie");
processInstance.task().complete("approved", true);
Try it out!
<dependency>
<groupId>org.camunda.bpm.incubation</groupId>
<artifactId>camunda-bpm-fluent-engine-api</artifactId>
<version>0.4-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.camunda.bpm.incubation</groupId>
<artifactId>camunda-bpm-fluent-assertions</artifactId>
<version>0.4-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<repositories>
<repository>
<id>camunda-bpm-nexus</id>
<name>camunda-bpm-nexus</name>
<url>https://app.camunda.com/nexus/content/groups/public</url>
</repository> </repositories>
More contributions welcome!
If you have an interesting idea for an incubation project, read the technical guidelines in GitHub and talk to us on the DEV mailing list!