Created
November 13, 2015 13:35
-
-
Save menski/3aeb5ce03407295d8e8b to your computer and use it in GitHub Desktop.
This file contains 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
import org.camunda.bpm.dmn.engine.DmnEngine; | |
public class MyProcessEnginePlugin extends AbstractProcessEnginePlugin { | |
public void postInit(ProcessEngineConfigurationImpl processEngineConfiguration) { | |
DmnEngine dmnEngine = processEngineConfiguration.getDmnEngineConfiguration() | |
.feelEngineFactory(new CustomFeelEngineFactory()) | |
.buildEngine(); | |
processEngineConfiguration.setDmnEngine(dmnEngine); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment