-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
35 lines (32 loc) · 921 Bytes
/
settings.gradle.kts
File metadata and controls
35 lines (32 loc) · 921 Bytes
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
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
mavenLocal()
google()
mavenCentral()
maven { url = uri("https://plugins.gradle.org/m2/") }
maven { url = uri("https://cache-redirector.jetbrains.com/intellij-dependencies") }
}
}
rootProject.name = "compose-stability-analyzer"
include(
":stability-compiler",
":stability-runtime",
":stability-gradle",
":stability-lint",
":compiler-tests",
":app",
":app-model",
)
// The IDE plugin is excluded from the main build because it requires Kotlin 2.3.0
// (the K2 Analysis API uses context receivers, which are removed in Kotlin 2.3.20).
// Build it separately: ./gradlew -p compose-stability-analyzer-idea buildPlugin
// include(":compose-stability-analyzer-idea")