-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
51 lines (41 loc) · 1.12 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
51
import com.android.build.api.dsl.SettingsExtension
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
includeBuild("gradle/plugins/kotlinter-conventions")
includeBuild("gradle/plugins/versions-conventions")
}
plugins {
id("com.gradle.enterprise") version ("3.13.4")
id("com.android.settings") version("8.0.0")
}
configure<SettingsExtension> {
compileSdk = 32
minSdk = 24
}
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(":libs:annotations")
include(":libs:concurrent-map")
include(":synk")
include(":extension:kotlin-serialization")
include(":metastores:delightful-metastore")
include(":plugins:ksp-adapter-codegen")
rootProject.name = "synk-multiplatform"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")