2016-06-30 10:15:08 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
esplugin {
|
|
|
|
description 'The Rank Eval module adds APIs to evaluate ranking quality.'
|
|
|
|
classname 'org.elasticsearch.index.rankeval.RankEvalPlugin'
|
2017-12-11 10:03:59 -05:00
|
|
|
hasClientJar = true
|
2016-06-30 10:15:08 -04:00
|
|
|
}
|
|
|
|
|
2020-03-19 13:28:59 -04:00
|
|
|
restResources {
|
|
|
|
restApi {
|
|
|
|
includeCore '_common', 'indices', 'index', 'rank_eval'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 04:41:38 -04:00
|
|
|
testClusters.integTest {
|
2018-06-15 09:55:39 -04:00
|
|
|
// Modules who's integration is explicitly tested in integration tests
|
2019-04-04 04:41:38 -04:00
|
|
|
module file(project(':modules:lang-mustache').tasks.bundlePlugin.archiveFile)
|
2018-06-15 09:55:39 -04:00
|
|
|
}
|