providers should open their main packages, allow org.slf4j reeflection

Signed-off-by: Ceki Gulcu <ceki@qos.ch>
This commit is contained in:
Ceki Gulcu 2024-02-05 22:39:28 +01:00
parent cd1468685b
commit a29e4b8629
2 changed files with 3 additions and 1 deletions

View File

@ -5,8 +5,9 @@ module org.slf4j.jul {
requires org.slf4j;
requires java.logging;
provides org.slf4j.spi.SLF4JServiceProvider with org.slf4j.jul.JULServiceProvider;
opens org.slf4j.jul to org.slf4j;
exports org.slf4j.jul;
opens org.slf4j.jul to org.slf4j;
}

View File

@ -4,5 +4,6 @@
module org.slf4j.nop {
requires org.slf4j;
exports org.slf4j.nop;
opens org.slf4j.nop to org.slf4j;
provides org.slf4j.spi.SLF4JServiceProvider with org.slf4j.nop.NOPServiceProvider;
}