Matthias Berndt <[EMAIL PROTECTED]> writes: > Greetings, > > I'd like to filter the web.xml in src/main/webapp/WEB-INF. I tried to > follow the instructions on > > http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html > > but it doesn't work src/main/webapp/WEB-INF/web.xml. Can anyone give me > an advice or provide an sample configuration? >
Hello, the following POM fragment does it: <project xmlns="http://maven.apache.org/POM/4.0.0" <build> <filters> <filter>${filter.config}</filter> </filters> <plugins> <plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <webResources> <webResource> <directory> ${basedir}/src/main/webapp-filtered </directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> <include>**/*.jsp</include> </includes> </webResource> </webResources> </configuration> </plugin> </plugins> </build> </project> > Thank you > Matthias Berndt HTH -- OQube < software engineering \ génie logiciel > Arnaud Bailly, Dr. \web> http://www.oqube.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
