The concept guide of Project Jigsaw introduces "a bridge between two automatic modules exporting the same package". 1
In fact, currently both of two automatic modules grpc.api
and grpc.context
export io.grpc
package, as is reported in its github. 2
The bridge seems to be the exact solution to apply Jigsaw for a project with these libraries, but the documentation does not offer any concrete way to achieve it.
Is there any javac
command option for this purpose? Or, is there any recommended way to overcome this situation?
Thanks!