forked from KasperskyLab/Kaspresso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
49 lines (41 loc) · 1.25 KB
/
settings.gradle.kts
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
47
48
49
rootProject.name = "kaspresso-framework"
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
val kasperskyRepoUrl: String? by settings
repositories {
gradlePluginPortal()
google()
kasperskyRepoUrl?.let { maven { setUrl(it) } }
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
mavenLocal()
google()
maven { url = uri("https://kotlin.bintray.com/kotlinx") }
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
}
}
includeBuild("build-logic")
include(
":adb-server:adb-server-command-types",
":adb-server:adb-server-common",
":adb-server:adb-server-connection",
":adb-server:adbserver-desktop",
":adb-server:adb-server-desktop-device-connection",
":adb-server:adb-server-device",
":kaspresso",
":kautomator",
":allure-support",
":compose-support",
":samples:adbserver-sample",
":samples:kaspresso-sample",
":samples:kautomator-sample",
":samples:kautomator-sample-app-upgrade",
":samples:kaspresso-allure-support-sample",
":samples:kaspresso-compose-support-sample",
":tutorial"
)