MVN

org.apache.logging.log4j : slf4j-impl

Maven & Gradle

Aug 24, 2012
5 usages

SLF4J Binding · Binding between SLF4J API and Log4J2 Core

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>slf4j-impl</artifactId>
    <version>2.0-alpha2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.logging.log4j : slf4j-impl to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0-alpha2
  • Latest Alpha: 2.0-alpha2

All Versions

Choose a version of org.apache.logging.log4j : slf4j-impl to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0
slf4j-impl-2.0-alpha2
slf4j-impl-2.0-alpha1

How to add a dependency to Maven

Add the following org.apache.logging.log4j : slf4j-impl maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>slf4j-impl</artifactId>
    <version>2.0-alpha2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.logging.log4j : slf4j-impl gradle dependency to your build.gradle file:

implementation 'org.apache.logging.log4j:slf4j-impl:2.0-alpha2'

Gradle Kotlin DSL: Add the following org.apache.logging.log4j : slf4j-impl gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.logging.log4j:slf4j-impl:2.0-alpha2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.logging.log4j : slf4j-impl sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.logging.log4j" % "slf4j-impl" % "2.0-alpha2"

Advertisement