Replies: 3 comments
-
MiMa operates at the bytecode level, not at the language level, so you'd need to use the bytecode names for things; e.g. According to https://github.com/lightbend/mima#filtering-binary-incompatibilities , you can use wildcards to match class names, but it's not clear from the doc if the same thing works for method names. I'd suggest you try it. If it works, we can tweak the documentation to be clearer. If it doesn't work, then it's a feature request. |
Beta Was this translation helpful? Give feedback.
-
Thank you! |
Beta Was this translation helpful? Give feedback.
-
You can use glob on any part that is reported. I often use it to ignore anything inside a package or class or object, whether it's nested classes or methods or anything. |
Beta Was this translation helpful? Give feedback.
-
Can I exclude mima binary compatibility reports with exclude filter wildcard like
foo.bar#O.*
orfoo.bar#O#K.*
?Beta Was this translation helpful? Give feedback.
All reactions