-
Notifications
You must be signed in to change notification settings - Fork 58
Description
Feature Request
Add a full module descriptor for improved use with JPMS. See also reactive-streams/reactive-streams-jvm#531
Is your feature request related to a problem? Please describe
r2dbc-spi doesn't have a full module descriptor. At the moment, it only has a stable automatic module name.
A full module descriptor is a requirement for some tools, like JLink. The module system in general has better support for full modules – for example, compiling requires transitive r2dbc.spi currently produces a warning about automatic modules.
Describe the solution you'd like
A module descriptor is added to the R2DBC-Spi jar, either at the root of the jar, or in a multi-release directory.
Describe alternatives you've considered
Continue to use the Automatic-Module-Name manifest entry. This has the drawbacks mentioned previously.
Teachability, Documentation, Adoption, Migration Strategy
Users don't have to do anything. The module name would stay the same, but instead of being an automatic module, R2DBC-Spi would become a full JPMS module.
The feature would ideally be mentioned in the release notes.