jira-importer commented on issue #133: URL: https://github.com/apache/maven-war-plugin/issues/133#issuecomment-2967844797
**[Juan Miguel Bernal Gonzalez](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=juanmiguelbg)** commented Thank's Grzegorz, you are right. In the page [Adding Filtering Webresources](http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html) of the **maven-war-plugin** documentation, section **Filtering**, you say: ``` ... <configuration> <!-- the default value is the filter list under build --> <!-- specifying a filter will override the filter list under build --> <filters> <filter>properties/config.prop</filter> </filters> <nonFilteredFileExtensions> <!-- default value contains jpg,jpeg,gif,bmp,png --> <nonFilteredFileExtension>pdf</nonFilteredFileExtension> </nonFilteredFileExtensions> <webResources> <resource> <directory>resource2</directory> <!-- it's not a good idea to filter binary files --> <filtering>false</filtering> </resource> <resource> <directory>configurations</directory> <!-- enable filtering --> <filtering>true</filtering> <excludes> <exclude>**/properties</exclude> </excludes> </resource> </webResources> </configuration> ... ``` but now, it isn't achieve this functionality. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org