50 lines
1.8 KiB
Groovy
50 lines
1.8 KiB
Groovy
/*
|
|
* 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.
|
|
*/
|
|
apply plugin: 'elasticsearch.internal-yaml-rest-test'
|
|
apply plugin: 'elasticsearch.yaml-rest-compat-test'
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
|
|
|
esplugin {
|
|
description 'Module for ingest processors that do not require additional security permissions or have large dependencies and resources'
|
|
classname 'org.elasticsearch.ingest.common.IngestCommonPlugin'
|
|
extendedPlugins = ['lang-painless']
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(':modules:lang-painless')
|
|
api project(':libs:elasticsearch-grok')
|
|
api project(':libs:elasticsearch-dissect')
|
|
implementation "org.apache.httpcomponents:httpclient:${versions.httpclient}"
|
|
implementation "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
include '_common', 'ingest', 'cluster', 'indices', 'index', 'bulk', 'nodes', 'get', 'update', 'cat', 'mget'
|
|
}
|
|
}
|
|
|
|
testClusters.all {
|
|
// Needed in order to test ingest pipeline templating:
|
|
// (this is because the integTest node is not using default distribution, but only the minimal number of required modules)
|
|
module ':modules:lang-mustache'
|
|
}
|
|
|
|
tasks.named("thirdPartyAudit").configure {
|
|
ignoreMissingClasses(
|
|
//commons-logging
|
|
'org.apache.commons.codec.binary.Base64',
|
|
'org.apache.commons.logging.Log',
|
|
'org.apache.commons.logging.LogFactory',
|
|
)
|
|
}
|
|
|
|
tasks.named("yamlRestTestV7CompatTransform").configure { task ->
|
|
task.addAllowedWarningRegex("\\[types removal\\].*")
|
|
}
|