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