forked from harbby/sylph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
35 lines (29 loc) · 840 Bytes
/
settings.gradle
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
33
34
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
}
rootProject.name = 'sylph'
include 'sylph-spi'
include 'sylph-main'
include 'ideal-common'
include 'sylph-controller'
include 'sylph-runners'
include 'sylph-runners:batch'
project(':sylph-runners:batch').name = 'sylph-runner-batch'
include 'sylph-runners:flink'
project(':sylph-runners:flink').name = 'sylph-runner-flink'
include ':sylph-runners:spark'
//project(":sql-13").projectDir = new File(settingsDir, "spark/sql-13")
project(':sylph-runners:spark').name = 'sylph-runner-spark'
//----
include 'sylph-etl-api'
include 'sylph-connectors'
include 'sylph-connectors:flink-node-plugin'
include 'sylph-connectors:spark-node-plugin'
//----
include 'sylph-dist'
include 'sylph-parser'
include 'sylph-docs'