forked from sensiasoft/sensorhub
-
Notifications
You must be signed in to change notification settings - Fork 16
/
settings.gradle
27 lines (25 loc) · 1.17 KB
/
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
rootProject.name = 'osh-core'
include 'swe-common-core'
include 'swe-common-om'
include 'sensorml-core'
include 'ogc-services-common'
include 'ogc-services-swe'
include 'ogc-services-sos'
include 'ogc-services-sps'
include 'sensorhub-core'
include 'sensorhub-core-osgi'
include 'sensorhub-utils-kryo'
include 'sensorhub-datastore-h2'
include 'sensorhub-service-swe'
include 'sensorhub-service-sweapi'
include 'sensorhub-service-consys'
include 'sensorhub-webui-core'
include 'sensorhub-webui-widgetset'
project(':swe-common-core').projectDir = "$rootDir/lib-ogc/swe-common-core" as File
project(':swe-common-om').projectDir = "$rootDir/lib-ogc/swe-common-om" as File
project(':sensorml-core').projectDir = "$rootDir/lib-ogc/sensorml-core" as File
project(':ogc-services-common').projectDir = "$rootDir/lib-ogc/ogc-services-common" as File
project(':ogc-services-swe').projectDir = "$rootDir/lib-ogc/ogc-services-swe" as File
project(':ogc-services-sos').projectDir = "$rootDir/lib-ogc/ogc-services-sos" as File
project(':ogc-services-sps').projectDir = "$rootDir/lib-ogc/ogc-services-sps" as File
project(':sensorhub-webui-widgetset').projectDir = "$rootDir/sensorhub-webui-core/widgetset" as File