Fixed module-info of log4j-core: added missing uses.

This commit is contained in:
Konrad Neitzel 2022-10-22 10:57:28 +02:00
parent a5008f7ea9
commit b4d325b26c

View File

@ -313,15 +313,18 @@
exports org.apache.logging.log4j.core.util.datetime; exports org.apache.logging.log4j.core.util.datetime;
exports org.apache.logging.log4j.core.util.internal; exports org.apache.logging.log4j.core.util.internal;
uses org.apache.logging.log4j.core.util.WatchEventService;
uses org.apache.logging.log4j.core.util.ContextDataProvider;
provides javax.annotation.processing.Processor with provides javax.annotation.processing.Processor with
org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor; org.apache.logging.log4j.core.config.plugins.processor.PluginProcessor;
provides org.apache.logging.log4j.core.util.ContextDataProvider with
org.apache.logging.log4j.core.impl.ThreadContextDataProvider;
provides org.apache.logging.log4j.message.ThreadDumpMessage.ThreadInfoFactory with provides org.apache.logging.log4j.message.ThreadDumpMessage.ThreadInfoFactory with
org.apache.logging.log4j.core.message.ExtendedThreadInfoFactory; org.apache.logging.log4j.core.message.ExtendedThreadInfoFactory;
provides org.apache.logging.log4j.spi.Provider with provides org.apache.logging.log4j.spi.Provider with
org.apache.logging.log4j.core.impl.Log4jProvider; org.apache.logging.log4j.core.impl.Log4jProvider;
provides org.apache.logging.log4j.core.util.ContextDataProvider with
org.apache.logging.log4j.core.impl.ThreadContextDataProvider;
} }
</moduleInfoSource> </moduleInfoSource>
</module> </module>