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