There is no concept for this in `module-info-java` (something like `requires runtime`) but we could add support for a special notation using comments: ``` module org.example.product.naboo { requires /*runtime*/ org.slf4j.simple; } ```
There is no concept for this in
module-info-java(something likerequires runtime) but we could add support for a special notation using comments: