forked from RotBolt/Flaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
31 lines (28 loc) · 770 Bytes
/
settings.gradle.kts
File metadata and controls
31 lines (28 loc) · 770 Bytes
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.google.com")
mavenLocal()
}
}
rootProject.name = "Flaker"
include(":library:flaker-android-ui")
include(":library:flaker-okhttp-core")
include(":library:flaker-ktor-core")
include(":library:flaker-android-okhttp")
include(":library:flaker-android-ktor")
include(":library:flaker-android")
include(":library:flaker-data")
include(":library:flaker-domain")
include(":library:flaker-android-monitor")
include("library-noop:flaker-okhttp-core-noop")
include("sampleapp")
include(":library-noop:flaker-android-okhttp-noop")