I have a very simple WAR project and I want to include a directory named META-INF at the top of the classes output folder where all the compiled Java classes are.
I'm using Maven, but it seems that by default Maven won't include anything that is not a Java class. So it ignores my META-INF directory that is sitting at the top of the src directory.
The META-INF directory contains a file named persistence.xml. Any quick pointers on how to instruct Maven to put this directory and file into the output folder?
|
|
||||
|
|
In general, for a Java-based Maven project, non-source files should go in the For Maven WAR projects, it is slightly more complicated: there is also the
As the |
|||||||||||||||
|
|
Maven wants this type of information in the resources folder. See here for more information.
For specifying additional resource directories, see here. |
||||
|
|
|
Put this into pom.xml:
|
||||
|
|
|
I'll indirectly answer your question by saying that if you've already made the jump to Maven2 I'd definitely recommend using the Archetype Plugin. Using the webapp archetype will ensure you end up with a canonical directory structure. Anyone else looking at your source will immediiately know where everything is and there won't be any question as to where your files go. |
|||
|
|
|
Give the below entry in POM.xml
|
|||
|
|