Skip to content

Commit

Permalink
duplicate-finder-maven-plugin add exception for localization.properti…
Browse files Browse the repository at this point in the history
…es from jersey
  • Loading branch information
dev-mlb committed Sep 9, 2023
1 parent 51ef221 commit 2de1991
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,25 @@
<artifactId>duplicate-finder-maven-plugin</artifactId>
<version>1.5.1</version>
<configuration>
<exceptions>
<exception>
<conflictingDependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-jetty-http</artifactId>
<version>${dep.jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
<artifactId>jersey-test-framework-provider-jetty</artifactId>
<version>${dep.jersey.version}</version>
</dependency>
</conflictingDependencies>
<resources>
<resource>org/glassfish/jersey/jetty/internal/localization.properties</resource>
</resources>
</exception>
</exceptions>
<printEqualFiles>false</printEqualFiles>
<failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict>
<failBuildInCaseOfEqualContentConflict>false</failBuildInCaseOfEqualContentConflict>
Expand All @@ -1014,10 +1033,6 @@
<!-- Version 1.2.1+ -->
<useDefaultResourceIgnoreList>true</useDefaultResourceIgnoreList>
<!-- Version 1.2.1+ -->
<ignoredResourcePatterns>
<!-- test classpath : found duplicate and different resources in org.glassfish.jersey.containers:jersey-container-jetty-http, org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jetty -->
<ignoredResourcePattern>org/glassfish/jersey/jetty/internal/localization.properties</ignoredResourcePattern>
</ignoredResourcePatterns>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 2de1991

Please sign in to comment.