Welcome! Please see the About page for a little more info on how this works.

0 votes
in tools.build by

Our project has some dependencies that register parsers for various file formats via the java services framework.

We’re using b/uber and are finding some META-INF/services/ definitions are not correctly being appended.

I’ve chased this down to the regex in the default-handlers being ^META-INF/services/ instead of something more like ^META-INF/services/.*

The current regex would match under re-find, but not under re-matches which the implementation uses.

1 Answer

0 votes
by

Thanks, fixed in v0.6.8 d79ae84

...