Last active
May 6, 2019 22:49
-
-
Save arifsetiawan/d98bbc39e3af40ccc026a65e40222770 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" /> | |
</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">full</property> | |
<property name="databaseSchemaUpdate">true</property> | |
<property name="authorizationEnabled">true</property> | |
<property name="jobExecutorDeploymentAware">true</property> | |
<property name="historyCleanupBatchWindowStartTime">00:01</property> | |
<!-- this supposed to allow any characters --> | |
<property name="generalResourceWhitelistPattern" value=".+"/> | |
</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