forked from opensearch-project/sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
32 lines (28 loc) · 707 Bytes
/
settings.gradle
File metadata and controls
32 lines (28 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
rootProject.name = 'opensearch-sql'
include 'opensearch-sql-plugin'
project(':opensearch-sql-plugin').projectDir = file('plugin')
include 'api'
include 'ppl'
include 'common'
include 'opensearch'
include 'core'
include 'protocol'
include 'legacy'
include 'sql'
include 'prometheus'
include 'benchmarks'
include 'datasources'
include 'async-query-core'
include 'async-query'
include 'direct-query-core'
include 'direct-query'
include 'language-grammar'
// exclude integ-test/doctest in case of offline build since they need downloads
if (!gradle.startParameter.offline) {
include 'integ-test'
include 'doctest'
}