MVN

com.j256.simplelogging : simplelogging

Maven & Gradle

Mar 04, 2023
5 stars

Simple Logging · Small logging facade that backends to a number of standard logging packages and that can be copied into another project. This allows you to write your code and include log messages without having a fixed dependency on any one logging package. I include this code into my libraries and so they can stay agnostic.

<dependency>
    <groupId>com.j256.simplelogging</groupId>
    <artifactId>simplelogging</artifactId>
    <version>2.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.j256.simplelogging : simplelogging to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2

All Versions

Choose a version of com.j256.simplelogging : simplelogging to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2
simplelogging-2.2
2.1
simplelogging-2.1
1.11
simplelogging-1.11
1.10
simplelogging-1.10
1.9
simplelogging-1.9
1.8
simplelogging-1.8
1.7
simplelogging-1.7
1.6
simplelogging-1.6
1.5
simplelogging-1.5
1.4
simplelogging-1.4
1.3
simplelogging-1.3
1.2
simplelogging-1.2
1.1
simplelogging-1.1

How to add a dependency to Maven

Add the following com.j256.simplelogging : simplelogging maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.j256.simplelogging</groupId>
    <artifactId>simplelogging</artifactId>
    <version>2.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.j256.simplelogging : simplelogging gradle dependency to your build.gradle file:

implementation 'com.j256.simplelogging:simplelogging:2.2'

Gradle Kotlin DSL: Add the following com.j256.simplelogging : simplelogging gradle kotlin dependency to your build.gradle.kts file:

implementation("com.j256.simplelogging:simplelogging:2.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.j256.simplelogging : simplelogging sbt scala dependency to your build.sbt file:

libraryDependencies += "com.j256.simplelogging" % "simplelogging" % "2.2"