2021-04-09 15:28:18 -04:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* The OpenSearch Contributors require contributions made to
|
|
|
|
* this file be licensed under the Apache-2.0 license or a
|
|
|
|
* compatible open source license.
|
|
|
|
*
|
|
|
|
* Modifications Copyright OpenSearch Contributors. See
|
|
|
|
* GitHub history for details.
|
|
|
|
*/
|
|
|
|
|
2016-06-22 13:22:48 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
2021-03-09 18:49:03 -05:00
|
|
|
apply plugin: 'opensearch.build'
|
2016-06-22 13:22:48 -04:00
|
|
|
|
2022-03-08 14:48:51 -05:00
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
2016-06-22 13:22:48 -04:00
|
|
|
|
2018-07-19 02:46:58 -04:00
|
|
|
group = "${group}.client.test"
|
|
|
|
|
2016-06-22 13:22:48 -04:00
|
|
|
dependencies {
|
2020-06-30 09:57:41 -04:00
|
|
|
api "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
|
|
|
api "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
|
|
|
api "junit:junit:${versions.junit}"
|
|
|
|
api "org.hamcrest:hamcrest:${versions.hamcrest}"
|
2016-06-22 13:22:48 -04:00
|
|
|
}
|
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisMain').configure {
|
2016-06-22 13:22:48 -04:00
|
|
|
//client does not depend on core, so only jdk signatures should be checked
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2016-06-22 13:22:48 -04:00
|
|
|
}
|
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisTest').configure {
|
2016-06-22 13:22:48 -04:00
|
|
|
//we are using jdk-internal instead of jdk-non-portable to allow for com.sun.net.httpserver.* usage
|
|
|
|
bundledSignatures -= 'jdk-non-portable'
|
|
|
|
bundledSignatures += 'jdk-internal'
|
|
|
|
//client does not depend on core, so only jdk signatures should be checked
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2016-06-22 13:22:48 -04:00
|
|
|
}
|
|
|
|
|
2018-01-11 13:30:43 -05:00
|
|
|
// JarHell is part of es server, which we don't want to pull in
|
2021-03-09 18:49:03 -05:00
|
|
|
// TODO: Not anymore. Now in :libs:opensearch-core
|
2019-11-14 06:01:23 -05:00
|
|
|
jarHell.enabled = false
|
2016-06-22 13:22:48 -04:00
|
|
|
|
|
|
|
// TODO: should we have licenses for our test deps?
|
2020-06-18 02:15:50 -04:00
|
|
|
tasks.named("dependencyLicenses").configure { it.enabled = false }
|
2017-12-26 04:51:47 -05:00
|
|
|
dependenciesInfo.enabled = false
|
2016-06-22 13:22:48 -04:00
|
|
|
|
|
|
|
//we aren't releasing this jar
|
|
|
|
thirdPartyAudit.enabled = false
|
2019-04-09 14:52:50 -04:00
|
|
|
test.enabled = false
|