-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathsettings.gradle.kts
42 lines (35 loc) · 1.02 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
rootProject.name = "kaspresso-framework"
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",
":kaspresso-allure-support",
":kaspresso-compose-support",
":kaspresso-plugin",
":tutorial"
)