-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsettings.gradle.kts
69 lines (59 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
maven("https://packages.jetbrains.team/maven/p/firework/dev") {
mavenContent {
includeGroupByRegex("org.jetbrains.kotlin.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
/*
Configure Repositories / Dependencies
*/
dependencyResolutionManagement {
versionCatalogs {
create("deps") {
from(files("dependencies.toml"))
}
}
repositories {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
/* Getting firework artifacts for tests (such as test compiler) */
maven("https://packages.jetbrains.team/maven/p/firework/dev") {
mavenContent {
includeVersionByRegex("org.jetbrains.*", ".*", ".*firework.*")
}
}
google {
mavenContent {
includeGroupByRegex(".*android.*")
includeGroupByRegex(".*androidx.*")
includeGroupByRegex(".*google.*")
}
}
mavenCentral()
}
}
include(":hot-reload-core")
include(":hot-reload-analysis")
include(":hot-reload-agent")
include(":hot-reload-orchestration")
include(":hot-reload-gradle-plugin")
include(":hot-reload-runtime-api")
include(":hot-reload-runtime-jvm")
include(":hot-reload-devtools")
include(":hot-reload-under-test")
include(":functionalTests")
gradle.beforeProject {
group = "org.jetbrains.compose"
version = project.providers.gradleProperty("version").get()
plugins.apply("test-conventions")
plugins.apply("main-conventions")
plugins.apply("kotlin-conventions")
}