According to the jest readme on github, you need to add the sonatype maven repository:
<repositories>
<repository>
<id>sonatype</id>
<name>Sonatype Groups</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
And then the dependency:
<dependency>
<groupId>io.searchbox</groupId>
<artifactId>jest</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
Alternatively, build the repository yourself and install it locally:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=io.searchbox -DartifactId=jest -Dversion=0.1.0-SNAPSHOT -Dpackaging=jar
Forget the repository if you're installing it locally, but include the dependency.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…