Apache Commons Logging Maven Dependency

This page gives you a quick reference to get Apache Commons Logging dependency for Maven or Gradle projects. You can also download the Apache Commons Logging jar dependency, the link given at the "Download JAR File" section.
Apache Commons Logging is a thin adapter allowing configurable bridging to other, well-known logging systems.

Apache Commons Logging Maven Dependency

Copy below Apache Commons Logging maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
<dependency>
    <groupId>commons-logging</groupId>
    <artifactId>commons-logging</artifactId>
    <version>1.2</version>
</dependency>

Apache Commons Logging Gradle Dependency

Copy below Apache Commons Logging Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/commons-logging/commons-logging
compile group: 'commons-logging', name: 'commons-logging', version: '1.2'

Download JAR File

Check for Latest Release

Reference



Comments