2019-01-15 23:52:46 +08:00
|
|
|
/*
|
2021-02-03 05:41:39 +08:00
|
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
2024-09-14 04:28:03 +08:00
|
|
|
* or more contributor license agreements. Licensed under the "Elastic License
|
|
|
|
* 2.0", the "GNU Affero General Public License v3.0 only", 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", the "GNU Affero General Public
|
|
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
2019-01-15 23:52:46 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.build'
|
2020-05-15 09:56:59 +08:00
|
|
|
apply plugin: 'elasticsearch.publish'
|
2019-01-15 23:52:46 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-06-12 19:34:53 +08:00
|
|
|
testImplementation(project(":test:framework")) {
|
2024-10-30 04:02:28 +08:00
|
|
|
exclude group: 'org.elasticsearch', module: 'geo'
|
2019-11-13 18:14:04 +08:00
|
|
|
}
|
2019-01-15 23:52:46 +08:00
|
|
|
}
|
|
|
|
|
2020-04-16 04:23:55 +08:00
|
|
|
tasks.named('forbiddenApisMain').configure {
|
2019-11-13 18:14:04 +08:00
|
|
|
// geo does not depend on server
|
|
|
|
// TODO: Need to decide how we want to handle for forbidden signatures with the changes to core
|
|
|
|
replaceSignatureFiles 'jdk-signatures'
|
2019-01-15 23:52:46 +08:00
|
|
|
}
|
|
|
|
|