twohou / java-sonic

Java client library of Sonic search

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

java-sonic

Release Build Status

Java client library of Sonic search

Compatibility

Tested under Ubuntu Trusty with:

  • oraclejdk8
  • oraclejdk9
  • oraclejdk11
  • openjdk8
  • openjdk9
  • openjdk11
  • openjdk12

Install

Gradle

Step 1. Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Step 2. Add the dependency

dependencies {
    implementation 'com.github.twohou:java-sonic:1.0.1'
}

Maven

Step 1. Add the JitPack repository to your build file

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.twohou</groupId>
    <artifactId>java-sonic</artifactId>
    <version>1.0.1</version>
</dependency>

Usage

See example

About

Java client library of Sonic search

License:MIT License


Languages

Language:Java 74.6%Language:Shell 25.4%