I am using Maven 3 and I am trying to add META-INF folder under webapp folder. So I am trying to do the following:
src main webapp META-INF context.xml
Put your META-INF folder within src/main/resources.
Put this on your pom.xml... sorry i missed it before;
org.apache.maven.plugins maven-war-plugin 3.0.0 true lib/ ${project.basedir}/src/main/resources mywar
the web resources tag is what is important... Hope this helps