cuba/settings.gradle

20 lines
1.2 KiB
Groovy
Raw Normal View History

2011-05-13 13:04:18 +08:00
/*
* Copyright (c) 2011 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
include(':cuba-shared-lib', ':cuba-global', ':cuba-core', ':cuba-client', ':cuba-gui', ':cuba-web-toolkit',
2015-04-08 15:15:59 +08:00
':cuba-web', ':cuba-web-themes', ':cuba-desktop', ':cuba-portal',':cuba-web-auth')
2011-05-13 13:04:18 +08:00
rootProject.name = 'cuba'
project(':cuba-shared-lib').projectDir = new File(settingsDir, 'modules/shared-lib')
project(':cuba-global').projectDir = new File(settingsDir, 'modules/global')
project(':cuba-core').projectDir = new File(settingsDir, 'modules/core')
project(':cuba-client').projectDir = new File(settingsDir, 'modules/client')
project(':cuba-gui').projectDir = new File(settingsDir, 'modules/gui')
project(':cuba-web-toolkit').projectDir = new File(settingsDir, 'modules/web-toolkit')
project(':cuba-web').projectDir = new File(settingsDir, 'modules/web')
project(':cuba-desktop').projectDir = new File(settingsDir, 'modules/desktop')
project(':cuba-portal').projectDir = new File(settingsDir, 'modules/portal')
2013-10-19 18:40:54 +08:00
project(':cuba-web-auth').projectDir = new File(settingsDir, 'modules/web-auth')
2015-04-08 15:15:59 +08:00
project(':cuba-web-themes').projectDir = new File(settingsDir, 'modules/web/themes')