MVN

org.apache.logging.log4j : log4j-to-jul

Maven & Gradle

Jun 18, 2023
3.1k stars

Apache Log4j to JUL Bridge · The Apache Log4j binding between Log4j 2 API and java.util.logging (JUL).

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-to-jul</artifactId>
    <version>2.20.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

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

  • Latest Stable: 2.20.0
  • Latest Alpha: 3.0.0-alpha1

All Versions

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

Version Vulnerabilities Updated
3.0.x
log4j-to-jul-3.0.0-alpha1
2.20.x
log4j-to-jul-2.20.0
2.19.x
log4j-to-jul-2.19.0
2.18.x
log4j-to-jul-2.18.0
2.17.x
log4j-to-jul-2.17.2

How to add a dependency to Maven

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

<dependency>
    <groupId>org.apache.logging.log4j</groupId>
    <artifactId>log4j-to-jul</artifactId>
    <version>2.20.0</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.apache.logging.log4j:log4j-to-jul:2.20.0'

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

implementation("org.apache.logging.log4j:log4j-to-jul:2.20.0")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.apache.logging.log4j" % "log4j-to-jul" % "2.20.0"