mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 05:28:34 +00:00
Currently forbidden apis accounts for 800+ tasks in the build. These tasks are aggressively created by the plugin. In forbidden apis 3.0, we will get task avoidance (https://github.com/policeman-tools/forbidden-apis/pull/162), but we need to ourselves use the same task avoidance mechanisms to not trigger these task creations. This commit does that for our foribdden apis usages, in preparation for upgrading to 3.0 when it is released.
31 lines
853 B
Groovy
31 lines
853 B
Groovy
/*
|
|
* This project contains XContent protocol classes shared between server and http client
|
|
*/
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
description = 'Request and response objects shared by the cli, jdbc ' +
|
|
'and the Elasticsearch plugin'
|
|
|
|
dependencies {
|
|
compile(project(':libs:elasticsearch-core')) {
|
|
transitive = false
|
|
}
|
|
compile(project(':libs:elasticsearch-x-content')) {
|
|
transitive = false
|
|
}
|
|
runtime "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
|
|
testCompile project(":test:framework")
|
|
}
|
|
|
|
tasks.named('forbiddenApisMain').configure {
|
|
//sql does not depend on server, so only jdk signatures should be checked
|
|
replaceSignatureFiles 'jdk-signatures'
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /elasticsearch-core.*/, to: 'elasticsearch'
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
ignoreSha 'elasticsearch-core'
|
|
}
|