forked from earocorn/osh-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
24 lines (22 loc) · 1.07 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
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-storage-perst'
include 'sensorhub-service-swe'
include 'sensorhub-tools'
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