fix #455 : support es 2.2
This commit is contained in:
parent
3424284588
commit
05506acc7a
3 changed files with 20 additions and 20 deletions
34
plugin.xml
34
plugin.xml
|
@ -13,51 +13,51 @@
|
|||
<mkdir dir="${plugins.dir}" />
|
||||
<!-- analysis-kuromoji-neologd -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="repo.url" value="${maven.snapshot.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="analysis-kuromoji-neologd" />
|
||||
<param name="plugin.version" value="2.1.1" />
|
||||
<param name="plugin.zip.version" value="2.1.1" />
|
||||
<param name="plugin.version" value="2.2.0-SNAPSHOT" />
|
||||
<param name="plugin.zip.version" value="2.2.0-20160328.131916-4" />
|
||||
</antcall>
|
||||
<!-- analysis-ja -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="repo.url" value="${maven.snapshot.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="analysis-ja" />
|
||||
<param name="plugin.version" value="2.1.2" />
|
||||
<param name="plugin.zip.version" value="2.1.2" />
|
||||
<param name="plugin.version" value="2.2.1-SNAPSHOT" />
|
||||
<param name="plugin.zip.version" value="2.2.1-20160328.132245-4" />
|
||||
</antcall>
|
||||
<!-- analysis-synonym -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="repo.url" value="${maven.snapshot.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="analysis-synonym" />
|
||||
<param name="plugin.version" value="2.1.1" />
|
||||
<param name="plugin.zip.version" value="2.1.1" />
|
||||
<param name="plugin.version" value="2.2.0-SNAPSHOT" />
|
||||
<param name="plugin.zip.version" value="2.2.0-20160328.133127-2" />
|
||||
</antcall>
|
||||
<!-- configsync -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="repo.url" value="${maven.snapshot.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="configsync" />
|
||||
<param name="plugin.version" value="2.1.2" />
|
||||
<param name="plugin.zip.version" value="2.1.2" />
|
||||
<param name="plugin.version" value="2.2.0-SNAPSHOT" />
|
||||
<param name="plugin.zip.version" value="2.2.0-20160328.140530-2" />
|
||||
</antcall>
|
||||
<!-- dataformat -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="dataformat" />
|
||||
<param name="plugin.version" value="2.1.1" />
|
||||
<param name="plugin.zip.version" value="2.1.1" />
|
||||
<param name="plugin.version" value="2.2.0" />
|
||||
<param name="plugin.zip.version" value="2.2.0" />
|
||||
</antcall>
|
||||
<!-- langfield -->
|
||||
<antcall target="install.plugin">
|
||||
<param name="repo.url" value="${maven.release.repo.url}" />
|
||||
<param name="repo.url" value="${maven.snapshot.repo.url}" />
|
||||
<param name="plugin.groupId" value="org/codelibs" />
|
||||
<param name="plugin.name" value="langfield" />
|
||||
<param name="plugin.version" value="2.1.3" />
|
||||
<param name="plugin.zip.version" value="2.1.3" />
|
||||
<param name="plugin.version" value="2.2.0-SNAPSHOT" />
|
||||
<param name="plugin.zip.version" value="2.2.0-20160328.213316-1" />
|
||||
</antcall>
|
||||
<!-- kopf -->
|
||||
<get dest="${target.dir}">
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -65,8 +65,8 @@
|
|||
<suggest.version>2.1.1</suggest.version>
|
||||
|
||||
<!-- Elasticsearch -->
|
||||
<elasticsearch.version>2.1.2</elasticsearch.version>
|
||||
<cluster.runner.version>2.1.2.0</cluster.runner.version>
|
||||
<elasticsearch.version>2.2.1</elasticsearch.version>
|
||||
<cluster.runner.version>2.2.1.0-SNAPSHOT</cluster.runner.version>
|
||||
|
||||
<!-- Tomcat -->
|
||||
<tomcat.boot.version>0.4.2</tomcat.boot.version>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
package org.codelibs.fess.entity;
|
||||
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthStatus;
|
||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
||||
|
||||
public class PingResponse {
|
||||
private int status = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue