-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsettings.gradle
More file actions
22 lines (20 loc) · 922 Bytes
/
settings.gradle
File metadata and controls
22 lines (20 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rootProject.name = 'chorusproject'
include 'chorus',
'chorus-selenium',
'chorus-spring',
'chorus-websockets',
'chorus-sql',
'chorus-mocksuite',
'chorus-webagent',
'chorus-xml',
'integrationtest',
'chorus-website'
project(':chorus').projectDir = file("interpreter/chorus")
project(':chorus-selenium').projectDir = file("extensions/chorus-selenium")
project(':chorus-spring').projectDir = file("extensions/chorus-spring")
project(':chorus-websockets').projectDir = file("extensions/chorus-websockets")
project(':chorus-sql').projectDir = file("extensions/chorus-sql")
project(':chorus-mocksuite').projectDir = file("services/chorus-mocksuite")
project(':chorus-webagent').projectDir = file("services/chorus-webagent")
project(':chorus-xml').projectDir = file("services/chorus-xml")
project(':chorus-website').projectDir = file("site/chorus-website")