-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
47 lines (38 loc) · 1.09 KB
/
settings.gradle.kts
File metadata and controls
47 lines (38 loc) · 1.09 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
47
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
includeBuild("gradle/plugins/kmp-conventions")
includeBuild("gradle/plugins/linting-conventions")
includeBuild("gradle/plugins/publishing-conventions")
includeBuild("gradle/plugins/versions-conventions")
}
plugins {
id("com.gradle.enterprise") version ("3.15.1")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.7.0")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(!System.getenv("GITHUB_ACTIONS").isNullOrEmpty())
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
mavenLocal()
maven(url = "https://jitpack.io" )
}
}
include(":benchmark")
include(":cachemap")
include(":cachemap-suspend")
include(":leftright")
include(":leftright-shared")
include(":leftright-suspend")
rootProject.name = "cachemap-multiplatform"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")