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