2015-10-29 14:40:19 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
2021-03-04 19:06:49 -05:00
|
|
|
apply plugin: 'opensearch.yaml-rest-test'
|
|
|
|
apply plugin: 'opensearch.internal-cluster-test'
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2021-03-18 19:14:19 -04:00
|
|
|
opensearchplugin {
|
2021-03-04 19:06:49 -05:00
|
|
|
description 'Lucene expressions integration for OpenSearch'
|
|
|
|
classname 'org.opensearch.script.expression.ExpressionPlugin'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-30 09:57:41 -04:00
|
|
|
api "org.apache.lucene:lucene-expressions:${versions.lucene}"
|
|
|
|
api 'org.antlr:antlr4-runtime:4.5.1-1'
|
|
|
|
api 'org.ow2.asm:asm:5.0.4'
|
|
|
|
api 'org.ow2.asm:asm-commons:5.0.4'
|
|
|
|
api 'org.ow2.asm:asm-tree:5.0.4'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
2020-03-19 13:28:59 -04:00
|
|
|
restResources {
|
|
|
|
restApi {
|
|
|
|
includeCore '_common', 'indices', 'index', 'cluster', 'nodes', 'search'
|
|
|
|
}
|
|
|
|
}
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2020-06-18 02:15:50 -04:00
|
|
|
tasks.named("dependencyLicenses").configure {
|
2015-10-29 14:40:19 -04:00
|
|
|
mapping from: /lucene-.*/, to: 'lucene'
|
2015-12-28 22:38:55 -05:00
|
|
|
mapping from: /asm-.*/, to: 'asm'
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|