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