2017-12-20 16:29:16 -06: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.
|
|
|
|
*/
|
|
|
|
apply plugin: 'nebula.maven-base-publish'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 13:50:23 -07:00
|
|
|
compile project(':libs:elasticsearch-core')
|
2018-05-24 17:33:29 -06:00
|
|
|
|
2017-12-20 16:29:16 -06:00
|
|
|
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
|
|
|
testCompile "junit:junit:${versions.junit}"
|
2019-04-24 23:39:40 -07:00
|
|
|
testCompile "org.hamcrest:hamcrest:${versions.hamcrest}"
|
2018-04-16 11:49:27 -04:00
|
|
|
|
2019-10-03 10:50:46 +03:00
|
|
|
testCompile(project(":test:framework")) {
|
2019-11-14 11:01:23 +00:00
|
|
|
exclude group: 'org.elasticsearch', module: 'elasticsearch-nio'
|
2017-12-21 14:34:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 16:29:16 -06:00
|
|
|
|
2020-04-15 13:23:55 -07: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 16:29:16 -06:00
|
|
|
// es-all is not checked as we connect and accept sockets
|
2018-08-22 09:05:22 +03:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2017-12-20 16:29:16 -06:00
|
|
|
}
|