I am using 5.15. I have hit many issues, which is why I wasn't specific initially.
I have created an Activiti feature file and have had lots of missing dependancies.
The final piece of the puzzle was that the JackonConverter was not being loaded. In the end I just created an additional class
<code>
public class KarafActivitiRestServicesApplication extends ActivitiRestServicesApplication {
@Override
public synchronized Restlet createInboundRoot() {
Engine.getInstance().getRegisteredConverters().add(new JacksonConverter());
return super.createInboundRoot();
}
}
</code>
On initial tests things are looking good however my main question is does anyone else runs it in this way as I'm curious to learn of a simpler way to get things running?