-
Notifications
You must be signed in to change notification settings - Fork 126
/
settings.gradle
24 lines (22 loc) · 1011 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
pluginManagement {
// Note: Since our plugin references the android plugin we need to include google() and mavenCentral() here.
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
include ':msal', ':common', ':keyvault', ':labapi', ':testutils', ':pop-benchmarker',
':package-inspector', ':msalautomationapp', ':uiautomationutilities', ':common4j',
':LabApiUtilities'
project(':common').projectDir = new File('common/common')
project(':keyvault').projectDir = new File('common/keyvault')
project(':labapi').projectDir = new File('common/labapi')
project(':testutils').projectDir = new File('common/testutils')
project(':uiautomationutilities').projectDir = new File('common/uiautomationutilities')
project(':common4j').projectDir = new File('common/common4j')
project(':LabApiUtilities').projectDir = new File('common/LabApiUtilities')
// test apps
include ':testapps:sample'
include ':testapps:testapp'
include ':testapps:automationapp'