I have a Maven project with JPA using hibernate.
I had to specify a jar file to load external classes in persistence.xml
located in src/main/resources/META-INF
<persistence unit name="PersistenceUnit" transaction-type="JTA"
...
<jar-file>lib/${project.persistencejar}.jar</jar-file>
using Maven filtering (the filename can change based on various Maven settings).
I instruct then Maven to filter by including in the pom.xml
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>META-INF/persistence.xml</include>
</includes>
</resource>
</resources>
and running mvn clean install
produces a deployable and working ear.
The problem is: if I keep JPA Facet enabled in Eclipse project configuration, Eclipse complains that
Multiple annotations found at this line:
- JAR file "lib/${project.persistencejar}.jar" cannot be resolved
- The path to the JAR file will vary on your runtime environment. Please make sure the
specified path fits your particular environment.
and disabling it doesn't build my JPA project everytime that I update it (thus having to run Maven everytime there is a change in the persistence. Is there a workaround to tell Eclipse where he can find the jar at development time? Or maybe I am using the wrong approach to filtering?
Thank you
I have solved it this way:
in
persistence.xml
substitute the whole<jar-file>
tag, i.e.Then include in
pom.xml
the propertyor alternatively in
src/main/filters/profilename.properties
file the lineIn this way Eclipse won't see the
jar-file
tag and won't complain. At build time, maven will generate the correct persistence xml.