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