slawekjaranowski commented on issue #444:
URL:
https://github.com/apache/maven-resources-plugin/issues/444#issuecomment-3601470119
I see you define two set of resources:
```
<resources>
<resource>
<directory>src/main/java</directory>
<filtering>true</filtering>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.js</include>
<include>META-INF/**</include>
</includes>
</resource>
</resources>
```
both set match file which you want to filter - `META-INF/commons.properties`
so `META-INF/commons.properties` is processed twice - second simply copy
without filtering
In old implementation of `maven-filtering` only timestamp of files was
checked, now content is analized so next copy override file
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]