In pom.xml I have defined :
org.apache.maven.plugins
maven-resources-plugin
I don't know why Gabor's solution did not work, but I managed to solve this way:
Firstly I removed nonFilteredFileExtension tag:
xml
Then modified my resources this way:
src/main/resources
true
**/myxml.xml
src/main/resources
false
**/*.xml
Now my single xml file is filtered and other is leaved untouched by filter.