mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-14 08:55:19 +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.
37 lines
1.0 KiB
Groovy
37 lines
1.0 KiB
Groovy
/*
|
|
* The minimal dependencies REST-based SQL client that is used by CLI and JDBC
|
|
*/
|
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
description = 'Code shared between jdbc and cli'
|
|
|
|
dependencies {
|
|
compile xpackProject('plugin:sql:sql-proto')
|
|
compile "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
testCompile project(":test:framework")
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /jackson-.*/, to: 'jackson'
|
|
mapping from: /sql-proto.*/, to: 'elasticsearch'
|
|
mapping from: /elasticsearch-cli.*/, to: 'elasticsearch'
|
|
mapping from: /elasticsearch-core.*/, to: 'elasticsearch'
|
|
ignoreSha 'elasticsearch-core'
|
|
}
|
|
|
|
tasks.named('forbiddenApisMain').configure {
|
|
// does not depend on core, so only jdk and http signatures should be checked
|
|
replaceSignatureFiles 'jdk-signatures'
|
|
}
|
|
|
|
tasks.named('forbiddenApisTest').configure {
|
|
bundledSignatures -= 'jdk-non-portable'
|
|
bundledSignatures += 'jdk-internal'
|
|
}
|
|
|
|
forbiddenPatterns {
|
|
exclude '**/*.keystore'
|
|
}
|