MVN

com.raelity.logman : logman-lib

Maven & Gradle

Jan 17, 2023

LogMan Library · Easy to install library for adding dynamic display, control and configuration of java.util.logging to any swing based application. Useful for debugging apps in production situations; can interactively configure logging while an application is running including adding a handler to save logging output to a file. Changes made to an application's default/startup logging can be saved and automatically applied at startup. LogMan "single" library package for use in swing apps. The jar can be executed, "java -jar xxx", for a demo of the library. See com.raelity.logman.demo.Main for an example of adding the library to a swing app.

<dependency>
    <groupId>com.raelity.logman</groupId>
    <artifactId>logman-lib</artifactId>
    <version>2.3.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.raelity.logman : logman-lib to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.3.1

All Versions

Choose a version of com.raelity.logman : logman-lib to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.3.x
logman-lib-2.3.1
2.2
logman-lib-2.2

How to add a dependency to Maven

Add the following com.raelity.logman : logman-lib maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.raelity.logman</groupId>
    <artifactId>logman-lib</artifactId>
    <version>2.3.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.raelity.logman : logman-lib gradle dependency to your build.gradle file:

implementation 'com.raelity.logman:logman-lib:2.3.1'

Gradle Kotlin DSL: Add the following com.raelity.logman : logman-lib gradle kotlin dependency to your build.gradle.kts file:

implementation("com.raelity.logman:logman-lib:2.3.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.raelity.logman : logman-lib sbt scala dependency to your build.sbt file:

libraryDependencies += "com.raelity.logman" % "logman-lib" % "2.3.1"