Thanks for all the hints! I removed the <inputIncludes/> section and
now it should be ok

Kind regards
--
Łukasz

pon., 24 lis 2025 o 00:03 Claude Warren <[email protected]> napisał(a):
>
> Ł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

Reply via email to