JMXConfigurator in 6.7.2

I have been trying to configure the JMX tooling in 6.7.2 by adding org.flowable.management.jmx.JMXConfigurator to the list of configurator beans as described in the documentation at Tooling · Flowable Open Source Documentation this results in a runtime exception

 WARN  JMXConfigurator error in initializing jmx. Continue with partial or no JMX configuration
java.lang.ClassCastException: org.flowable.eventregistry.impl.cfg.StandaloneEventRegistryEngineConfiguration cannot be cast to org.flowable.engine.ProcessEngineConfiguration
         at org.flowable.management.jmx.JMXConfigurator.configure(JMXConfigurator.java:119) ~[flowable-jmx-6.7.2.jar:6.7.2]
        at org.flowable.common.engine.impl.AbstractEngineConfiguration.configuratorsAfterInit(AbstractEngineConfiguration.java:1111) ~[flowable-engine-common-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.eventregistry.impl.EventRegistryEngineConfiguration.init(EventRegistryEngineConfiguration.java:242) ~[flowable-event-registry-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.eventregistry.impl.EventRegistryEngineConfiguration.buildEventRegistryEngine(EventRegistryEngineConfiguration.java:194) ~[flowable-event-registry-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.eventregistry.impl.configurator.EventRegistryEngineConfigurator.initEventRegistryEngine(EventRegistryEngineConfigurator.java:87) ~[flowable-event-registry-configurator-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.eventregistry.impl.configurator.EventRegistryEngineConfigurator.configure(EventRegistryEngineConfigurator.java:64) ~[flowable-event-registry-configurator-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.common.engine.impl.AbstractEngineConfiguration.configuratorsAfterInit(AbstractEngineConfiguration.java:1111) ~[flowable-engine-common-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.init(ProcessEngineConfigurationImpl.java:1033) ~[flowable-engine-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.buildProcessEngine(ProcessEngineConfigurationImpl.java:919) ~[flowable-engine-6.7.2a-SNAPSHOT.jar:6.7.2a-SNAPSHOT]
        at com.gossinteractive.workers.workflow.ThreadedWorkflowWorker.processConfig(ThreadedWorkflowWorker.java:302) ~[workflow-2.0.0-SNAPSHOT.jar:?]
        at com.gossinteractive.apiserver.components.threadedworker.ThreadedWorker.waitForInit(ThreadedWorker.java:410) ~[threadedworker-1.2.6.jar:?]
        at com.gossinteractive.apiserver.components.threadedworker.ThreadedWorker.doMain(ThreadedWorker.java:166) ~[threadedworker-1.2.6.jar:?]
        at com.gossinteractive.workers.workflow.ThreadedWorkflowWorker.main(ThreadedWorkflowWorker.java:102) ~[workflow-2.0.0-SNAPSHOT.jar:?]

I have already managed to get around the documentation error for the IDMConfigurator but there does not appear to be a specific configurator for JMX is there something I am missing?