Skip to content

Instantly share code, notes, and snippets.

@menski
Created November 13, 2015 13:35
Show Gist options
  • Save menski/3aeb5ce03407295d8e8b to your computer and use it in GitHub Desktop.
Save menski/3aeb5ce03407295d8e8b to your computer and use it in GitHub Desktop.
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