20d672e49f
Also remove unused artifacts from the Buck file. Gerrit gitblit plugin must ship Lucene binaries in shaded jar, because the versions of Lucene that Gerrit and Gitblit ship are different. This change and this pull request [1] harmonize the Lucene versions in Gerrit and Gitblit distributions. [1] https://github.com/gitblit/gitblit/pull/124 Change-Id: Ib94a288b60445d73f617174d58f69e4fe91b4d36
36 lines
902 B
Python
36 lines
902 B
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '4.6.0'
|
|
|
|
maven_jar(
|
|
name = 'core',
|
|
id = 'org.apache.lucene:lucene-core:' + VERSION,
|
|
bin_sha1 = 'f1d974facaea30a3a0c1752a24097af5a7d40e60',
|
|
src_sha1 = '19d4eb5def4bc2517a00b50f7a875b7ce33988a7',
|
|
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,
|
|
bin_sha1 = '25dda6706bcb7a741f25f57cdbec6c2f36adc557',
|
|
src_sha1 = '04866d0e36e3ef708d099014752ad4fef61d4243',
|
|
license = 'Apache2.0',
|
|
exclude = [
|
|
'META-INF/LICENSE.txt',
|
|
'META-INF/NOTICE.txt',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'query-parser',
|
|
id = 'org.apache.lucene:lucene-queryparser:' + VERSION,
|
|
bin_sha1 = 'ef35f1eb55e50725777162e376e7b5222f45f7fa',
|
|
src_sha1 = 'e99e3b298e83461c03ef6eb66ab9798a4b712dc6',
|
|
license = 'Apache2.0',
|
|
)
|