2016-05-27 10:01:33 -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.
|
|
|
|
*/
|
|
|
|
apply plugin: 'elasticsearch.build'
|
2020-05-14 21:56:59 -04:00
|
|
|
apply plugin: 'elasticsearch.publish'
|
2016-05-27 10:01:33 -04:00
|
|
|
|
2019-02-08 19:47:33 -05:00
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
2016-05-27 10:01:33 -04:00
|
|
|
|
2016-07-01 04:22:55 -04:00
|
|
|
group = 'org.elasticsearch.client'
|
2017-07-13 03:44:25 -04:00
|
|
|
archivesBaseName = 'elasticsearch-rest-client-sniffer'
|
|
|
|
|
2016-05-27 10:01:33 -04:00
|
|
|
dependencies {
|
2019-06-04 16:50:23 -04:00
|
|
|
compile project(":client:rest")
|
2017-08-25 15:13:12 -04:00
|
|
|
compile "org.apache.httpcomponents:httpclient:${versions.httpclient}"
|
|
|
|
compile "org.apache.httpcomponents:httpcore:${versions.httpcore}"
|
2016-05-27 10:01:33 -04:00
|
|
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
|
|
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
|
|
|
|
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(":client:test")
|
|
|
|
testImplementation "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "org.elasticsearch:securemock:${versions.securemock}"
|
|
|
|
testImplementation "org.elasticsearch:mocksocket:${versions.mocksocket}"
|
2016-05-27 10:01:33 -04:00
|
|
|
}
|
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisMain').configure {
|
2018-01-11 13:30:43 -05:00
|
|
|
//client does not depend on server, so only jdk signatures should be checked
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2016-05-27 10:01:33 -04:00
|
|
|
}
|
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisTest').configure {
|
2016-06-10 06:41:49 -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'
|
2018-01-11 13:30:43 -05:00
|
|
|
//client does not depend on server, so only jdk signatures should be checked
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2016-06-09 17:44:34 -04:00
|
|
|
}
|
2016-05-27 10:01:33 -04:00
|
|
|
|
2020-06-18 02:15:50 -04:00
|
|
|
tasks.named("dependencyLicenses").configure {
|
2016-07-13 09:37:50 -04:00
|
|
|
mapping from: /http.*/, to: 'httpclient'
|
|
|
|
mapping from: /commons-.*/, to: 'commons'
|
|
|
|
}
|
|
|
|
|
2018-01-11 13:30:43 -05:00
|
|
|
// JarHell is part of es server, which we don't want to pull in
|
2019-06-04 16:50:23 -04:00
|
|
|
// TODO: Not anymore. Now in :libs:elasticsearch-core
|
2019-11-14 06:01:23 -05:00
|
|
|
jarHell.enabled = false
|
2016-06-17 05:37:01 -04:00
|
|
|
|
2019-01-08 06:39:03 -05:00
|
|
|
testingConventions {
|
|
|
|
naming.clear()
|
|
|
|
naming {
|
|
|
|
Tests {
|
|
|
|
baseClass 'org.elasticsearch.client.RestClientTestCase'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
thirdPartyAudit.ignoreMissingClasses(
|
2016-05-27 10:01:33 -04:00
|
|
|
//commons-logging optional dependencies
|
|
|
|
'org.apache.avalon.framework.logger.Logger',
|
|
|
|
'org.apache.log.Hierarchy',
|
|
|
|
'org.apache.log.Logger',
|
|
|
|
'org.apache.log4j.Category',
|
|
|
|
'org.apache.log4j.Level',
|
|
|
|
'org.apache.log4j.Logger',
|
|
|
|
'org.apache.log4j.Priority',
|
|
|
|
//commons-logging provided dependencies
|
|
|
|
'javax.servlet.ServletContextEvent',
|
|
|
|
'javax.servlet.ServletContextListener'
|
2019-01-07 10:24:19 -05:00
|
|
|
)
|