micronaut-camunda-platform-7
micronaut-camunda-platform-7 copied to clipboard
Integration between Micronaut and Camunda (Workflow Engine). We configure Camunda with sensible defaults, so that you can get started with minimum configuration: simply add a dependency in your Micron...
What is the right way to include UI plugins for Camunda Cockpit (and other apps) in a Micronaut Camunda app? Last time I tried, I ended up copying whole "resources/META-INF"...
* added spotbugs gradle plugin * added seperate job in GHA continous-integration that spotbugs analysis is always executed when a PR is created * defined exclude rule that all generated...
- [x] Add Tests for metrics - [x] Add documentation - [x] Allow to disable Camunda BuildIn Metric Reporting - [x] Add prometheus & grafana to visualize camunda metrics
It would be nice to remove the spring-beans dependency: ``` --- a/micronaut-camunda-bpm-feature/build.gradle +++ b/micronaut-camunda-bpm-feature/build.gradle @@ -24,6 +24,7 @@ dependencies { implementation("io.micronaut:micronaut-runtime") api("org.camunda.bpm:camunda-engine:$camundaVersion") { exclude group: 'org.camunda.bpm.model', module: 'camunda-cmmn-model' + exclude...
Most users will switch from Netty to Jetty to be able to use the webapps 1. let's make jetty the default which selecting "camunda" in Micronaut-Launch 2. Link in README...
Currently, during startup of an application most time is lost when building the process engine. Specifically, it's during the MyBatis Initialization when parsing the XML mappings which takes several seconds....
Using MySQL as the datasource results in an error when restarting the application. On Startup it tries to create tables that already exist. My Setup: MySQL 8.0.23 in a docker...
Let's provide some metrics for Micronaut Micrometer: * Number of process models (unversioned?) * Number of running process instances * Number of completed process instances * ...(have a look at...
Starting the Camunda process engine takes a few seconds. Let's analyze what is taking so long using e.g. inspectIT.