Versions 5.2.0 [1] and 5.2.1 [2] contain several bugfixes and optimizations since version 5.1.0. [1] https://lucene.apache.org/core/5_2_0/changes/Changes.html#v5.2.0.bug_fixes [2] https://lucene.apache.org/core/5_2_1/changes/Changes.html#v5.2.1.bug_fixes Change-Id: I1a530ed92c5a3e7845c7aa61f54a26b0ace65e88
63 lines
1.3 KiB
Python
63 lines
1.3 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '5.2.1'
|
|
|
|
maven_jar(
|
|
name = 'core',
|
|
id = 'org.apache.lucene:lucene-core:' + VERSION,
|
|
sha1 = 'a175590aa8b04e079eb1a136fd159f9163482ba4',
|
|
license = 'Apache2.0',
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'analyzers-common',
|
|
id = 'org.apache.lucene:lucene-analyzers-common:' + VERSION,
|
|
sha1 = '33b7cc17d5a7c939af6fe3f67563f4709926d7f5',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'backward-codecs',
|
|
id = 'org.apache.lucene:lucene-backward-codecs:' + VERSION,
|
|
sha1 = '603d1f06b133449272799d698e5118db65e523ba',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'misc',
|
|
id = 'org.apache.lucene:lucene-misc:' + VERSION,
|
|
sha1 = 'be0a4f0ac06f0a2fa3689b4bf6cd1fe6847f9969',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'queryparser',
|
|
id = 'org.apache.lucene:lucene-queryparser:' + VERSION,
|
|
sha1 = '73be0a2d4ab3e6b574be1938bfb27f7f730f0ad9',
|
|
license = 'Apache2.0',
|
|
deps = [':core'],
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|