Skip to content

Commit 8d67193

Browse files
author
gaozhicheng
committed
Update lucene to 8.4.0
1 parent 9b731bb commit 8d67193

26 files changed

+99
-97
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ ik-analyzer for solr 7.x-8.x
3131

3232

3333
## 使用说明
34-
* jar包下载地址:[![GitHub version](https://img.shields.io/badge/version-8.3.1-519dd9.svg)](https://search.maven.org/remotecontent?filepath=com/github/magese/ik-analyzer/8.3.1/ik-analyzer-8.3.1.jar)
34+
* jar包下载地址:[![GitHub version](https://img.shields.io/badge/version-8.4.0-519dd9.svg)](https://search.maven.org/remotecontent?filepath=com/github/magese/ik-analyzer/8.4.0/ik-analyzer-8.4.0.jar)
3535
* 历史版本:[![GitHub version](https://img.shields.io/maven-central/v/com.github.magese/ik-analyzer.svg?style=flat-square)](https://search.maven.org/search?q=g:com.github.magese%20AND%20a:ik-analyzer&core=gav)
3636

3737
```xml
3838
<!-- Maven仓库地址 -->
3939
<dependency>
4040
<groupId>com.github.magese</groupId>
4141
<artifactId>ik-analyzer</artifactId>
42-
<version>8.3.1</version>
42+
<version>8.4.0</version>
4343
</dependency>
4444
```
4545

@@ -101,6 +101,8 @@ ik-analyzer for solr 7.x-8.x
101101

102102

103103
## 更新说明
104+
- `2021-03-22:`
105+
- 升级lucene版本为`8.4.0`
104106
- `2020-12-30:`
105107
- 升级lucene版本为`8.3.1`
106108
- 更新词库

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.magese</groupId>
66
<artifactId>ik-analyzer</artifactId>
7-
<version>8.3.1</version>
7+
<version>8.4.0</version>
88
<packaging>jar</packaging>
99

1010
<name>ik-analyzer-solr</name>
@@ -13,7 +13,7 @@
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<lucene.version>8.3.1</lucene.version>
16+
<lucene.version>8.4.0</lucene.version>
1717
<javac.src.version>1.8</javac.src.version>
1818
<javac.target.version>1.8</javac.target.version>
1919
<maven.compiler.plugin.version>3.3</maven.compiler.plugin.version>

src/main/java/org/wltea/analyzer/cfg/Configuration.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.cfg;

src/main/java/org/wltea/analyzer/cfg/DefaultConfig.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.cfg;

src/main/java/org/wltea/analyzer/core/AnalyzeContext.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/CJKSegmenter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/CN_QuantifierSegmenter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/CharacterUtil.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/IKArbitrator.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/IKSegmenter.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,7 +21,7 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
2525
* release 8.3.1 update by Magese([email protected])
2626
*
2727
*/

src/main/java/org/wltea/analyzer/core/ISegmenter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/LetterSegmenter.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/Lexeme.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/LexemePath.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.core;

src/main/java/org/wltea/analyzer/core/QuickSortSet.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -176,8 +176,8 @@ Cell getHead() {
176176
}
177177

178178
/*
179-
* IK 中文分词 版本 8.3.1
180-
* IK Analyzer release 8.3.1
179+
* IK 中文分词 版本 8.4.0
180+
* IK Analyzer release 8.4.0
181181
* update by Magese([email protected])
182182
*/
183183
@SuppressWarnings("unused")

src/main/java/org/wltea/analyzer/dic/DictSegment.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.dic;

src/main/java/org/wltea/analyzer/dic/Dictionary.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.dic;

src/main/java/org/wltea/analyzer/dic/Hit.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.dic;

src/main/java/org/wltea/analyzer/lucene/IKAnalyzer.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* IK 中文分词 版本 8.3.1
3-
* IK Analyzer release 8.3.1
2+
* IK 中文分词 版本 8.4.0
3+
* IK Analyzer release 8.4.0
44
*
55
* Licensed to the Apache Software Foundation (ASF) under one or more
66
* contributor license agreements. See the NOTICE file distributed with
@@ -21,8 +21,8 @@
2121
* 版权声明 2012,乌龙茶工作室
2222
* provided by Linliangyi and copyright 2012 by Oolong studio
2323
*
24-
* 8.3.1版本 由 Magese ([email protected]) 更新
25-
* release 8.3.1 update by Magese([email protected])
24+
* 8.4.0版本 由 Magese ([email protected]) 更新
25+
* release 8.4.0 update by Magese([email protected])
2626
*
2727
*/
2828
package org.wltea.analyzer.lucene;

0 commit comments

Comments
 (0)