forked from Unidata/thredds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
35 lines (33 loc) · 962 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
35
// Explicitly name the root project. See: http://stackoverflow.com/questions/20128416
rootProject.name = 'thredds'
// These all refer to subdirectory names.
include 'bufr'
include 'cdm'
include 'cdm-test'
include 'clcommon'
include 'dap4:d4cdmclient'
include 'dap4:d4cdmshared'
include 'dap4:d4client'
include 'dap4:d4core'
include 'dap4:d4servletshared'
include 'dap4:d4shared'
include 'dap4:d4tests'
include 'dap4:d4ts'
include 'dap4:d4tswar'
include 'grib'
include 'httpservices'
include 'it'
include 'ncIdv'
include 'netcdf4'
include 'opendap'
include 'opendap:dtswar'
include 'tdcommon'
include 'tdm'
include 'tds'
include 'udunits'
include 'ui'
include 'visad'
include 'waterml'
// However, the subdirectory name is not always the name we want for the project.
// TODO: Once Maven is out of the picture, can't we just rename the subdirectory?
project(':visad').name = 'visadCdm' // Change name of project in visad/ directory from "visad" to "visadCdm".