How to add a dependency to Maven
Add the following br.com.crazycrowd : logback-json-access maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>br.com.crazycrowd</groupId>
<artifactId>logback-json-access</artifactId>
<version>0.1.6</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following br.com.crazycrowd : logback-json-access gradle dependency to your build.gradle
file:
implementation 'br.com.crazycrowd:logback-json-access:0.1.6'
Gradle Kotlin DSL: Add the following br.com.crazycrowd : logback-json-access gradle kotlin dependency to your build.gradle.kts
file:
implementation("br.com.crazycrowd:logback-json-access:0.1.6")
How to add a dependency to SBT Scala
SBT Scala: Add the following br.com.crazycrowd : logback-json-access sbt scala dependency to your build.sbt
file:
libraryDependencies += "br.com.crazycrowd" % "logback-json-access" % "0.1.6"