Skip to content

Commit

Permalink
build: Ignore inner methods for Clirr
Browse files Browse the repository at this point in the history
Clirr reports a false positive if an inner method is changed. Adjust the configuration of the Clirr plugin to ignore these errors.
  • Loading branch information
saig0 committed May 12, 2023
1 parent 37739ee commit f9fde28
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@
<differenceType>7004</differenceType>
<method>* $anonfun*(*)</method>
</ignored>
<ignored>
<className>org/camunda/feel/**</className>
<differenceType>7002</differenceType>
<method>* $anonfun*(*)</method>
</ignored>
<ignored>
<!-- allow new methods in the interface-->
<className>org/camunda/feel/**</className>
Expand Down

0 comments on commit f9fde28

Please sign in to comment.