Hi,
In the recommended wildfly-installation, the camunda-entities seem to be in:
wildfly-8.2.0.Final/modules/org/camunda/bpm/camunda-engine/main/camunda-engine-7.2.0.jar:/org/camunda/bpm/engine/impl/persistence
...which I guess makes them 'available' to any deployed application (which is using camunda ofcourse).
How can I have my App's entities managed by a separate persistence-unit ?
Do I have to specify all camunda-entities in one persistence unit ?
Listing all classes seems not right, specifying an entity-jar is only for EAR deployments...
What I want is:
persistence-unit "A" having _only_ camunda entities, so the db tables only have "ACT_..." tables, managing the process(es)
persistence-unit "B" having _only_ my App's entities (and mapped tables)
Best,
Joerg