Every now and then I work on a Java search plugin and Maven cries because MacOS is littering .DS_Store files throughout the project directories. I add the config below to the plugin's pom.xml to make Maven feel better, and then someone rightly points out that it should be in the parent pom. I'm not Java/pom literate enough to be sure I've picked the right config (ignoredResourcePattern seems right, but I don't know) or properly test changes in the parent pom, hence this ticket.
<plugin> <groupId>org.basepom.maven</groupId> <artifactId>duplicate-finder-maven-plugin</artifactId> <configuration> <ignoredResourcePatterns> <ignoredResourcePattern>.*\.DS_Store</ignoredResourcePattern> </ignoredResourcePatterns> </configuration> </plugin>
Not sure who to tag, so I'm tagging Data Engineering (as other tasks have been tagged) and Discovery Search (so we can discuss in our next triage if needed).