Camunda-bpm-mail-core config/build issues

Hello! Trying to use the camunda-bpm-mail-core on a service task, but not getting anywhere…

Camunda Enterprise 7.6.0 embedded

I have included the dependancy in my POM…

<dependency>
    <groupId>org.camunda.bpm.extension</groupId>
    <artifactId>camunda-bpm-mail-core</artifactId>
</dependency>

I have verified that the Connect plugin is enable as defined here Here

<plugins>
  <plugin>
    <class>org.camunda.connect.plugin.impl.ConnectProcessEnginePlugin</class>
  </plugin>
</plugins>

My Service task looks simple…

<serviceTask id="sid-00EAB01D-B273-4E0D-9ED6-F194E6BADB1F" name="inform call center">
  <extensionElements>
    <camunda:connector>
      <camunda:inputOutput>
        <camunda:inputParameter name="from">me@there.com</camunda:inputParameter>
        <camunda:inputParameter name="to">test@there.com</camunda:inputParameter>
        <camunda:inputParameter name="subject">Test</camunda:inputParameter>
        <camunda:inputParameter name="text">Test</camunda:inputParameter>
      </camunda:inputOutput>
      <camunda:connectorId>mail-send</camunda:connectorId>
    </camunda:connector>
  </extensionElements>
</serviceTask>

However, when I build I get the error…

* One of the attributes 'class', 'delegateExpression', 'type', or 'expression' is mandatory on serviceTask. | incidentManagement.bpmn | line 303 | column 90

Any help appreciated!

Hi @cstreeter,

your BPMN process looks good, so far.

Can you please share the whole BPMN process?

Do you embed the Camunda engine side your own application?
How do you bootstrap the engine?

Maybe the Connect plugin is not registered correctly.

Best regards,
Philipp