forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
22 lines (19 loc) · 731 Bytes
/
build.gradle
File metadata and controls
22 lines (19 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
opensearchplugin {
description = 'DataFusion native execution engine plugin for the query engine.'
classname = 'org.opensearch.be.datafusion.DataFusionPlugin'
extendedPlugins = ['analytics-engine']
}
dependencies {
// Shared types and SPI interfaces (EngineBridge, EngineCapabilities, AnalyticsBackEndPlugin, etc.)
// Also provides calcite-core transitively via api.
api project(':sandbox:libs:analytics-framework')
}
// TODO: Remove once back-end is built out with test suite
testingConventions.enabled = false