MVN

com.raelity.logman : logman-core

Maven & Gradle

Jan 17, 2023

LogMan Core · 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; interactively configure logging while an application is running including adding a handler to save logging output to a file. Changes made to the logging configuration can be saved and automatically applied at startup.

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

Latest Version

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

  • Latest Stable: 2.3.1

All Versions

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

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

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

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

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

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

How to add a dependency to SBT Scala

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

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