ity.utility-logging-log4j.14-beta-2.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utility-logging-log4j Show documentation
Show all versions of utility-logging-log4j Show documentation
Java utilities (logging, Log4J)
// Copyright (c) 2022 Axel Howind
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
import com.dua3.utility.logging.ILogEntryDispatcherFactory;
import com.dua3.utility.logging.log4j.LogEntryDispatcherFactoryLog4j;
import org.jspecify.annotations.NullMarked;
/**
* This module provides logging functionality using Log4j.
*/
@NullMarked
open module com.dua3.utility.logging.log4j {
exports com.dua3.utility.logging.log4j;
provides ILogEntryDispatcherFactory with LogEntryDispatcherFactoryLog4j;
requires org.jspecify;
requires com.dua3.utility.logging;
requires static org.apache.logging.log4j.core;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy