-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
59 lines (50 loc) · 1.33 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
52
53
54
55
56
57
58
59
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
gradlePluginPortal()
google()
maven {
setUrl("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
}
plugins {
id("com.gradle.enterprise") version "3.8.1"
}
gradleEnterprise {
buildScan {
publishAlways()
}
}
val secretProps = java.util.Properties()
file("secret.properties").inputStream().use { secretProps.load(it) }
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
mavenLocal()
maven {
setUrl("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/esafirm/compose-code-editor")
credentials {
username = secretProps["github.username"] as String
password = secretProps["github.token"] as String
}
}
}
}
rootProject.name = "UIBook"
include(":browser-app")
include(":browser-core")
include(":annotations")
include(":annotations-processor")
include(":device-frame")
// Examples
include(":examples:demo")
include(":examples:minimum-kmp")
include(":examples:minimum-android")
// Gradle plugins for build conventions
includeBuild("build-conventions")