2019-04-20 02:33:57 +08:00
|
|
|
/*
|
2021-02-03 05:41:39 +08:00
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
|
|
* Side Public License, v 1.
|
2019-04-20 02:33:57 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.build'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 07:18:45 +08:00
|
|
|
compileOnly project(":server")
|
|
|
|
compileOnly project(":libs:elasticsearch-cli")
|
2020-06-12 19:34:53 +08:00
|
|
|
testImplementation project(":test:framework")
|
2021-01-07 04:07:06 +08:00
|
|
|
testImplementation "com.google.jimfs:jimfs:${versions.jimfs}"
|
|
|
|
testRuntimeOnly "com.google.guava:guava:${versions.jimfs_guava}"
|
2019-04-20 02:33:57 +08:00
|
|
|
}
|
2021-06-09 06:04:23 +08:00
|
|
|
|
|
|
|
tasks.named('splitPackagesAudit').configure {
|
|
|
|
// common.settings is owned by server, this should be keystore specifici
|
|
|
|
ignoreClasses 'org.elasticsearch.common.settings.AddFileKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.AddStringKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.BaseKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.ChangeKeyStorePasswordCommand',
|
|
|
|
'org.elasticsearch.common.settings.CreateKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.HasPasswordKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.KeyStoreCli',
|
|
|
|
'org.elasticsearch.common.settings.ListKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.RemoveSettingKeyStoreCommand',
|
|
|
|
'org.elasticsearch.common.settings.UpgradeKeyStoreCommand'
|
|
|
|
}
|