SendTask in bpmn gives parsing error while deployment

@Ingo_Richtsmeier i’m not sure how you solved the above issue. When i woke up next day morning, i found an idea and it worked, solved in 2 mins :slight_smile:

Here’s my solution to the problem. Not sure why i didn’t thought about the below configuration :frowning: Finally i was able to deploy the process with connectors config in SendTask :slight_smile:

List<ProcessEnginePlugin> processEnginePlugins = CollectionUtils
        .isNotEmpty(processEngineConfig.getProcessEnginePlugins()) ? processEngineConfig.getProcessEnginePlugins()
            : new ArrayList<>();
processEnginePlugins.addAll(Arrays.asList(new ConnectProcessEnginePlugin(), new SpinProcessEnginePlugin()));
processEngineConfig.setProcessEnginePlugins(processEnginePlugins);

After looking at the below code i added the above config and it worked :slight_smile:

public class ConnectProcessEnginePlugin extends AbstractProcessEnginePlugin {...}