2021-03-02 17:08:24 +08:00
|
|
|
/*
|
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
|
|
* Side Public License, v 1.
|
|
|
|
*/
|
|
|
|
|
2021-03-02 22:19:12 +08:00
|
|
|
apply plugin: 'elasticsearch.validate-rest-spec'
|
2021-08-31 14:45:52 +08:00
|
|
|
apply plugin: 'elasticsearch.internal-yaml-rest-test'
|
2021-04-03 00:20:54 +08:00
|
|
|
apply plugin: 'elasticsearch.yaml-rest-compat-test'
|
2021-03-02 22:19:12 +08:00
|
|
|
|
2021-03-02 17:08:24 +08:00
|
|
|
esplugin {
|
|
|
|
description 'Module for runtime fields features and extensions that have large dependencies'
|
|
|
|
classname 'org.elasticsearch.runtimefields.RuntimeFieldsCommonPlugin'
|
|
|
|
extendedPlugins = ['lang-painless']
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly project(':modules:lang-painless:spi')
|
|
|
|
api project(':libs:elasticsearch-grok')
|
|
|
|
api project(':libs:elasticsearch-dissect')
|
|
|
|
}
|
|
|
|
|
|
|
|
//this plugin is here only for the painless extension, there are no unit tests
|
|
|
|
tasks.named("testingConventions").configure { enabled = false }
|