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