2017-12-20 17:29:16 -05: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.
|
|
|
|
*/
|
2020-05-14 21:56:59 -04:00
|
|
|
apply plugin: 'elasticsearch.publish'
|
2017-12-20 17:29:16 -05:00
|
|
|
|
|
|
|
dependencies {
|
2020-06-30 09:57:41 -04:00
|
|
|
api project(':libs:elasticsearch-core')
|
2018-05-24 19:33:29 -04:00
|
|
|
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "org.hamcrest:hamcrest:${versions.hamcrest}"
|
2018-04-16 11:49:27 -04:00
|
|
|
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation(project(":test:framework")) {
|
2019-11-14 06:01:23 -05:00
|
|
|
exclude group: 'org.elasticsearch', module: 'elasticsearch-nio'
|
2017-12-21 09:34:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 17:29:16 -05:00
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisMain').configure {
|
2018-06-07 17:00:00 -04:00
|
|
|
// nio does not depend on core, so only jdk signatures should be checked
|
2017-12-20 17:29:16 -05:00
|
|
|
// es-all is not checked as we connect and accept sockets
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2017-12-20 17:29:16 -05:00
|
|
|
}
|