Skip to content

Commit ba8bb85

Browse files
committed
update to support 7.x
1 parent 125ac3c commit ba8bb85

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,9 @@ Versions
1010

1111
IK version | ES version
1212
-----------|-----------
13-
master | 6.x -> master
14-
6.3.0| 6.3.0
15-
6.2.4| 6.2.4
16-
6.1.3| 6.1.3
17-
5.6.8| 5.6.8
18-
5.5.3| 5.5.3
19-
5.4.3| 5.4.3
20-
5.3.3| 5.3.3
21-
5.2.2| 5.2.2
22-
5.1.2| 5.1.2
13+
master | 7.x -> master
14+
6.x| 6.x
15+
5.x| 5.x
2316
1.10.6 | 2.4.6
2417
1.9.5 | 2.3.5
2518
1.8.1 | 2.2.1

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<inceptionYear>2011</inceptionYear>
1313

1414
<properties>
15-
<elasticsearch.version>6.5.0</elasticsearch.version>
15+
<elasticsearch.version>7.0.0</elasticsearch.version>
1616
<maven.compiler.target>1.8</maven.compiler.target>
1717
<elasticsearch.assembly.descriptor>${project.basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
1818
<elasticsearch.plugin.name>analysis-ik</elasticsearch.plugin.name>

src/main/java/org/elasticsearch/index/analysis/IkTokenizerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class IkTokenizerFactory extends AbstractTokenizerFactory {
1111
private Configuration configuration;
1212

1313
public IkTokenizerFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) {
14-
super(indexSettings, name, settings);
14+
super(indexSettings, settings);
1515
configuration=new Configuration(env,settings);
1616
}
1717

0 commit comments

Comments
 (0)