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