I put my jars in WEB-INF/lib
Adding the following section to my POM file
<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Regards
Thierry
2006/6/7, Mark Reynolds <[EMAIL PROTECTED]>:
If I include a file (not talking about MANIFEST.MF here) in
src/main/resources/META-INF, it ends up in WEB-INF/classes/META-INF in
the WAR file. What is the correct way to include a file in the WAR
file's META-INF?
-- Mark R
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]