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