2017-04-21 12:25:58 -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'
|
|
|
|
|
2018-05-25 07:56:35 -04:00
|
|
|
archivesBaseName = 'elasticsearch-plugin-cli'
|
|
|
|
|
2017-04-21 12:25:58 -04:00
|
|
|
dependencies {
|
2018-02-09 14:30:24 -05:00
|
|
|
compileOnly "org.elasticsearch:elasticsearch:${version}"
|
|
|
|
compileOnly "org.elasticsearch:elasticsearch-cli:${version}"
|
2018-05-25 07:56:35 -04:00
|
|
|
compile "org.bouncycastle:bcpg-jdk15on:1.59"
|
|
|
|
compile "org.bouncycastle:bcprov-jdk15on:1.59"
|
2017-04-21 12:25:58 -04:00
|
|
|
testCompile "org.elasticsearch.test:framework:${version}"
|
|
|
|
testCompile 'com.google.jimfs:jimfs:1.1'
|
|
|
|
testCompile 'com.google.guava:guava:18.0'
|
|
|
|
}
|
|
|
|
|
2018-05-25 07:56:35 -04:00
|
|
|
dependencyLicenses {
|
|
|
|
mapping from: /bc.*/, to: 'bouncycastle'
|
|
|
|
}
|
|
|
|
|
2018-12-19 01:25:20 -05:00
|
|
|
unitTest {
|
2017-04-21 12:25:58 -04:00
|
|
|
// TODO: find a way to add permissions for the tests in this module
|
|
|
|
systemProperty 'tests.security.manager', 'false'
|
|
|
|
}
|
2018-08-29 10:43:40 -04:00
|
|
|
|
|
|
|
if (project.inFipsJvm) {
|
|
|
|
// FIPS JVM includes manny classes from bouncycastle which count as jar hell for the third party audit,
|
|
|
|
// rather than provide a long list of exclusions, disable the check on FIPS.
|
|
|
|
thirdPartyAudit.enabled = false
|
|
|
|
}
|