This page gives you a quick reference to get logback-core dependency for Maven or Gradle projects. You can also download the logback-core jar dependency, the link given at the "Download JAR File" section.
Use logback-core module library to work with Logback.
For more details about the proper version to use, check out the following Maven Central link.
Use logback-core module library to work with Logback.
Logback Core Module Maven Dependency
Copy below Logback Core Module maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-core -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.3.0-alpha5</version>
</dependency>
Logback Core Module Gradle Dependency
Copy below Logback Core Module Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/ch.qos.logback/logback-core
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.3.0-alpha5'
Comments
Post a Comment