mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 01:19:02 +00:00
The `net-client` project contained more then just the `net-client`. It contains stuff like `SuppressForbidden` and `Strings` and `IOUtil` and other things shared between the CLI and JDBC. It also does contain the http client. Anyway, it makes more sense to call it `shared-client`, I think. Alos updated the copywrite dates on the files that I touched because they are all 2017 files. Removed some uses of `String.EMPTY` because they don't buy us anything and require an extra import. `""` is just one less step. Original commit: elastic/x-pack-elasticsearch@465c6445c4
11 lines
348 B
Groovy
11 lines
348 B
Groovy
description = 'Request and response objects shared by the cli and jdbc and the server.'
|
|
|
|
dependencies {
|
|
testCompile project(':x-pack-elasticsearch:sql:test-utils')
|
|
}
|
|
|
|
forbiddenApisMain {
|
|
// does not depend on core, so only jdk and http signatures should be checked
|
|
signaturesURLs = [this.class.getResource('/forbidden/jdk-signatures.txt')]
|
|
}
|