Skip to content

Commit

Permalink
[FLINK-7811] Fix japicmp exclusion pattern
Browse files Browse the repository at this point in the history
It seems \$ doesn't work but $$ does. I noticed this when changing
DataStream.scala.
  • Loading branch information
aljoscha committed Oct 31, 2018
1 parent 09d327d commit 8b35020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flink-streaming-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ under the License.
<parameter>
<excludes combine.children="append">
<!-- Exclude generated classes from api compatibility checks -->
<exclude>*\$\$anon\$*</exclude>
<exclude>*$$$$anon$$*</exclude>

<!-- Ignore method which was created automatically by Scala for default value calculation.
Can be removed once https://github.com/siom79/japicmp/issues/176 will be fixed -->
Expand Down

0 comments on commit 8b35020

Please sign in to comment.