-
Notifications
You must be signed in to change notification settings - Fork 697
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
46 lines (42 loc) · 1.08 KB
/
settings.gradle.kts
File metadata and controls
46 lines (42 loc) · 1.08 KB
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
36
37
38
39
40
41
42
43
44
45
46
rootProject.name = "maestro"
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
// Configure Source Control for forked kotlin-sdk
sourceControl {
gitRepository(uri("https://github.com/steviec/kotlin-sdk.git")) {
producesModule("io.modelcontextprotocol:kotlin-sdk")
}
}
include("maestro-utils")
include("maestro-android")
include("maestro-cli")
include("maestro-client")
include("maestro-ios")
include("maestro-ios-driver")
include("maestro-orchestra")
include("maestro-orchestra-models")
include("maestro-orchestra-proto")
include("maestro-proto")
include("maestro-studio:server")
include("maestro-studio:web")
include("maestro-test")
include("maestro-ai")
include("maestro-web")
include(":maestro-client")
include(":maestro-driver-ios")
include(":maestro-orchestra")
include(":maestro-studio")
include(":maestro-test")
include(":maestro-xcuitest-driver")