-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.gradle.kts
50 lines (41 loc) · 1 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
50
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
includeBuild("buildLogic")
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version "3.19"
}
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
publishing.onlyIf { context ->
context.buildResult.failures.isNotEmpty() && !System.getenv("CI").isNullOrEmpty()
}
}
}
rootProject.name = "connectivity"
include(
":connectivity-core",
":connectivity-android",
":connectivity-apple",
":connectivity-device",
":connectivity-http",
":connectivity-compose",
":connectivity-compose-device",
":connectivity-compose-http",
":connectivity-tools-android",
)
include(":demo:composeApp")