Skip to content

Commit

Permalink
Add workaround for itsallcode/openfasttrace#428
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Aug 11, 2024
1 parent 0803253 commit ac08d51
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@
<artifactId>openfasttrace-api</artifactId>
<version>${oft.version}</version>
</dependency>
<dependency>
<groupId>org.itsallcode.openfasttrace</groupId>
<artifactId>openfasttrace-core</artifactId>
<version>${oft.version}</version>
</dependency>
<dependency>
<groupId>org.itsallcode.openfasttrace</groupId>
<artifactId>openfasttrace</artifactId>
Expand Down Expand Up @@ -532,15 +527,20 @@
</execution>
</executions>
<configuration>
<printEqualFiles>true</printEqualFiles>
<printEqualFiles>false</printEqualFiles>
<failBuildInCaseOfDifferentContentConflict>true</failBuildInCaseOfDifferentContentConflict>
<failBuildInCaseOfEqualContentConflict>true</failBuildInCaseOfEqualContentConflict>
<failBuildInCaseOfConflict>true</failBuildInCaseOfConflict>
<!-- Workaround for https://github.com/itsallcode/openfasttrace/issues/428 -->
<failBuildInCaseOfEqualContentConflict>false</failBuildInCaseOfEqualContentConflict>
<failBuildInCaseOfConflict>false</failBuildInCaseOfConflict>
<checkCompileClasspath>true</checkCompileClasspath>
<checkRuntimeClasspath>true</checkRuntimeClasspath>
<checkTestClasspath>false</checkTestClasspath>
<preferLocal>true</preferLocal>
<useResultFile>false</useResultFile>
<ignoredResourcePatterns>
<!-- Suppress warning "Found duplicate and different resources in [org.eclipse.sisu:org.eclipse.sisu.inject:0.3.5, org.eclipse.sisu:org.eclipse.sisu.plexus:0.3.5]" -->
<ignoredResourcePattern>about.html</ignoredResourcePattern>
</ignoredResourcePatterns>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit ac08d51

Please sign in to comment.