-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
80 lines (63 loc) · 1.53 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
70
71
72
73
74
75
76
77
78
79
80
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/8.1.1/userguide/multi_project_builds.html
*/
rootProject.name = "Decouple"
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
google()
// Compose Multiplatform
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
versionCatalogs {
create("demoLibs") {
from(files("gradle/demo.versions.toml"))
}
}
}
pluginManagement {
repositories {
// region OpenSavvy Conventions
maven {
name = "opensavvy-gradle-conventions"
url = uri("https://gitlab.com/api/v4/projects/51233470/packages/maven")
metadataSources {
gradleMetadata()
mavenPom()
}
content {
@Suppress("UnstableApiUsage")
includeGroupAndSubgroups("dev.opensavvy")
}
}
// endregion
// region Standard repositories
gradlePluginPortal()
google()
mavenCentral()
// endregion
}
includeBuild("gradle/conventions")
}
plugins {
id("dev.opensavvy.conventions.settings") version "1.5.2"
}
include(
"polymorphism",
"components",
"designs:design-headless",
"designs:design-headless-prepared",
"designs:design-material3-androidx",
"designs:design-material3-html",
"designs:design-pure-css",
"demo",
"demo:composeApp",
"gradle:templates:template-app",
"gradle:templates:template-lib",
)