Here's the facts :
- I have 2 jars that contain JPA entities in my webapp,
- and entities from one jar (jar A) has references of entities in another jar (jarB)
- I put the
<jar-file>/WEB-INF/lib/MyJarB.jar</jar-file>in the persistence.xml of jar A
But i dont want to hardcode the /WEB-INF/lib/MyJarB.jar because i could be testing the entities in a test environment, and would love to have another way of specifying entities jar dependencies other than hardcoding the path.
I tried the <jar-file>MyJarB.jar</jar-file> and <jar-file>./MyJarB.jar</jar-file>, but both failed.
Please share your thoughts.