You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like everyone else Cucumber needs to write Json and does so using Jackson.
To avoid conflicts with other versions of Jackson, Cucumber shades its own
version. Unfortunately this shading isn't done perfectly and the files in
`META-INF/services` are not updated to match.
By excluding the services declared by Jackson we can avoid this problem
altogether, though it may come back in the future if/when Jackson decides
to use its own services outside of `ObjectMapper.findAndRegisterModules`.
Hopefully, the shade plugin has been fixed by then.
Fixes: #2620
0 commit comments