mirror of https://github.com/qos-ch/slf4j
providers should open their main packages, allow org.slf4j reeflection
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
This commit is contained in:
parent
cd1468685b
commit
a29e4b8629
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue