All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ity.utility-logging.13.1.1.source-code.module-info Maven / Gradle / Ivy

There is a newer version: 13.1.2
Show newest version
// Copyright (c) 2022 Axel Howind
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

/**
 * The com.dua3.utility.logging module is responsible for providing utilities related to logging.
 * It exports the com.dua3.utility.logging package which contains classes and interfaces related to logging.
 * 

* The module requires the com.dua3.cabe.annotations package at compile time. *

* It uses the com.dua3.utility.logging.ILogEntryDispatcherFactory service to obtain an instance of the * LogEntryDispatcher. *

* The module also requires the org.apache.logging.log4j and com.dua3.utility packages at runtime. */ open module com.dua3.utility.logging { exports com.dua3.utility.logging; requires static com.dua3.cabe.annotations; uses com.dua3.utility.logging.ILogEntryDispatcherFactory; requires org.apache.logging.log4j; requires com.dua3.utility; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy