Ćukasz, Your pom.xml has the block
<inputIncludes> <include>pom.xml</include> <include>src/**</include> </inputIncludes> Once a file is included it can not be excluded. src/** includes everything under the source tree. so all your <exclude> statements that start with "src/" are not excluded because you have explicitly said to include them. By default all the files in the tree starting in the maven project basedir are candidates for scanning. So I think you can remove the <inputIncludes> section. Please let me know if this solves the problem. As a side note, if you are using the same set of patterns across multiple components, or just a base set of patterns, you could put them in a file and exclude them consistently in all the subprojects by using the <inputExcludeFile> option. Claude. This has the -- LinkedIn: http://www.linkedin.com/in/claudewarren
