Created
July 16, 2023 14:32
-
-
Save farhadnowzari/09750657aab321b7dbabd3e38b80be4b to your computer and use it in GitHub Desktop.
bpm-platform.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<bpm-platform xmlns="http://www.camunda.org/schema/1.0/BpmPlatform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.camunda.org/schema/1.0/BpmPlatform http://www.camunda.org/schema/1.0/BpmPlatform "> | |
<job-executor> | |
<job-acquisition name= "default"> | |
<properties> | |
<property name= "maxWait">500</property> | |
<property name= "waitTimeInMillis">1000</property> | |
</properties> | |
</job-acquisition> | |
</job-executor> | |
<process-engine name="default"> | |
<job-acquisition>default</job-acquisition> | |
<configuration>org.camunda.bpm.engine.impl.cfg.StandaloneProcessEngineConfiguration</configuration> | |
<datasource>java:jdbc/ProcessEngine</datasource> | |
<properties> | |
<property name="history">activity</property> | |
<property name="databaseSchemaUpdate">true</property> | |
<property name="authorizationEnabled">true</property> | |
<property name="jobExecutorDeploymentAware">false</property> | |
<property name="historyCleanupBatchWindowStartTime">00:01</property> | |
</properties> | |
<plugins> | |
<!-- plugin enabling Process Application event listener support --> | |
<plugin> | |
<class>org.camunda.bpm.application.impl.event.ProcessApplicationEventListenerPlugin</class> | |
</plugin> | |
<!-- plugin enabling integration of camunda Spin --> | |
<plugin> | |
<class>org.camunda.spin.plugin.impl.SpinProcessEnginePlugin</class> | |
</plugin> | |
<!-- plugin enabling connect support --> | |
<plugin> | |
<class>org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin</class> | |
</plugin> | |
</plugins> | |
</process-engine> | |
</bpm-platform> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment