@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
Here’s my solution to the problem. Not sure why i didn’t thought about the below configuration Finally i was able to deploy the process with connectors config in SendTask
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
public class ConnectProcessEnginePlugin extends AbstractProcessEnginePlugin {...}