I can not get maven2 to add my *jboss-web.xml* file in my war file. Here is my plugin for it! With the <includes/> my war file builds as empty war no class files added.
How do I get this file in my war?
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webXml>${basedir}/WEB-INF/web.xml</webXml>
<outputDirectory>/usr2/local/jboss-4.0.3SP1/server/nextServer/deploy/</
outputDirectory>
</configuration>
</plugin>
Thanks
